anonymous
2008-05-16 12:55:33 UTC
For one of the assignments, I have to open a file for reading.
I open a file for writing just to test out to see if fopen( ) works.
FILE *fp;
fp = fopen( "testFile.txt", "w" );
But it keeps generating this warning.
warning C4996: 'fopen' was declared deprecated
What is that mean?