Hi all,
I'm a beginner at Open Watcom and i'm trying to R/W from and into a file...i used the library "fstream.h" but the scanner shows invalid token...
#include <stdio.h>
#include <string.h>
#include <iostream.h>
#include <fstream.h>
int main()
{
ifstream inFile; // object for reading from a file
ofstream outFile; // object for writing to a file
inFile.open(path, ios::in);
outFile.open(path, ios::out);
return 0;
}
Thanks in Advance,
Mostafa Fouly