int fputs(const char* cpBuffer. FILE* qpStream);
#include <cstdio>
int main()
{
char* cpFileName = "XoaX.txt";
// Open an ASCII text file for appending
FILE* qpFile = fopen(cpFileName, "a" );
// Check that the file was opened successfully.
if (!qpFile) {
printf("Could not open %s for reading \n", cpFileName);
return 1;
}
// Append a plus to the end of the file
int iResult = fputs(" C++ programming", qpFile);
if (iResult == EOF) {
printf("Write Error");
}
fclose(qpFile);
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.