#include <stdio.h>
int main ()
{
FILE * pFile;
char ch;
pFile = fopen ("G:\\ IJLAL.txt","w+");
while((ch = getchar())!=EOF)
putc(ch,pFile);
fclose(pFile);
return 0;
}
can you specify the problem??? I am totally new to fopen function. and please help me with this thing