I am using C. I am having issues with using pointers for the fscanf function. When I try to do:
int *x; /* ... */ fscanf(file, "%d", x[i]);
I've a 'C' program which has encountered a strange problem.. I'm getting segmentation fault in the line containing "feof(fp)".. I am trying to run on linux.. I even used gdb command to backtrace ...