C 언어 간단한 파일 읽기와 쓰기

546 단어
#include<stdio.h>
#include<stdlib.h>
int main()
{
	FILE * fp;
	char ch,filename[10];
	printf("please input the filename
"); scanf("%s",filename); if((fp=fopen(filename,"w"))==NULL) { printf("cannot open the file
"); exit(0); } ch = getchar(); printf("please input a string, and end it with'#'
"); ch = getchar(); while(ch!='#') { fputc(ch,fp); putchar(ch); ch=getchar(); } fclose(fp); putchar(10); return 0; }

좋은 웹페이지 즐겨찾기