i just want to know, if you are using an argv statement in your code, and you are defining two files (one for input one for output), called inFile and outFile, and you open the first in "r" mode and the second in "w" mode...... can you apply it to the same file?
i.e. can i say something like the following?:
inFile = fopen(argv[data.txt], "r");
outFile = fopen(argv[data.txt], "w");
....will this work or do i need to put two different file names in each line?