I'm not sure about the size of the file but for the char value yo could just assign it as '' (2 single quotes) as I don't think a normal char accepts NULL as a value.
thanx... but when i used these codes in one of the programs it shows me the following error: Debug assertion failed. it shows some file fseek.c can you plz explain me what is this???
Comments
FILE* pFile = fopen ("", "rb");
fseek (pFile, 0, SEEK_END);
long lFileSize = ftell (pFile);
[/code]
but when i used these codes in one of the programs it shows me the following error:
Debug assertion failed.
it shows some file fseek.c
can you plz explain me what is this???