size_t getc(const void* kvpBuf, size_t qSize, size_t qCount, FILE* qpStream);
#include <cstdio>
int main()
{
char* cpFileName = "XoaX.txt";
// Open an ASCII text file for reading.
FILE* qpFile = fopen(cpFileName, "r" );
// Check that the file was opened successfully.
if (!qpFile) {
printf("Could not open %s for reading \n", cpFileName);
return 1;
}
// Get the first character in the file.
int iRet = getc(qpFile);
printf("Read in: %c\n", (char)iRet);
fclose(qpFile);
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.