E D R , A S I H C RSS

파일 입출력_2

~cpp
#include <iostream>
using namespace std;

int main()
{
	FILE *fpt;     
	fpt = fopen("test.txt.", "w");    // test.txt  write
	fprintf ( fpt , "Hello World!") ;
	fclose(fpt);                      // fopen  fclose  !

	system("pause");
	return 0;

}


msdn
Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:31:24
Processing time 0.0129 sec