Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C 언어에서 파일의 putc() 및 getc() 함수 설명

<시간/>

파일은 기록의 모음이거나 데이터가 영구적으로 저장되는 하드 디스크의 한 장소입니다.

파일 작업

C 프로그래밍 언어의 파일에 대한 작업은 다음과 같습니다. -

  • 파일 이름 지정
  • 파일 열기
  • 파일에서 읽기
  • 파일에 쓰기
  • 파일 닫기

구문

파일을 여는 구문은 다음과 같습니다 -

FILE *File pointer;

예를 들어, 파일 * fptr;

파일 이름을 지정하는 구문은 다음과 같습니다. -

File pointer = fopen ("File name", "mode");

예를 들어,

fptr = fopen ("sample.txt", "r");
FILE *fp;
fp = fopen ("sample.txt", "w");

putc( ) 및 getc( ) 함수

putc( ) 함수는 파일에 문자를 쓰는 데 사용됩니다.

putc() 함수의 구문은 다음과 같습니다 -

putc (char ch, FILE *fp);

예를 들어,

FILE *fp;
char ch;
putc(ch, fp);

getc( ) 함수는 파일에서 문자를 읽는 데 사용됩니다.

getc() 함수의 구문은 다음과 같습니다 -

char getc (FILE *fp);

예를 들어,

FILE *fp;
char ch;
ch = getc(fp);

C 언어에서 파일의 putc() 및 getc() 함수 설명

예시

다음은 putc() 및 getc() 함수를 사용하기 위한 C 프로그램입니다. -

#include<stdio.h>
int main(){
   char ch;
   FILE *fp;
   fp=fopen("std1.txt","w"); //opening file in write mode
   printf("enter the text.press cntrl Z:\n");
   while((ch = getchar())!=EOF){
      putc(ch,fp); // writing each character into the file
   }
   fclose(fp);
   fp=fopen("std1.txt","r");
   printf("text on the file:\n");
   while ((ch=getc(fp))!=EOF){ // reading each character from file
      putchar(ch); // displaying each character on to the screen
   }
   fclose(fp);
   return 0;
}

출력

위의 프로그램이 실행되면 다음과 같은 결과가 생성됩니다 -

enter the text.press cntrl Z:
Hi Welcome to TutorialsPoint
Here I am Presenting Question and answers in C Programming Language
^Z
text on the file:
Hi Welcome to TutorialsPoint
Here I am Presenting Question and answers in C Programming Language