#include <stdio.h>
#include <math.h>
#include <string.h>
int main(void){
int ch, i;
FILE * fp=fopen("mystory.txt", "wt");
if(fp==NULL)
{
puts("파일오픈 실패!");
return -1;
}
fputs("#이름: 윤성우\n", fp);
fputs("#주민번호: 900208-1012589\n", fp);
fputs("#전화번호: 010-1111-2222\n", fp);
fclose(fp);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: