getcプロジェクト

getc.c

#include <stdio.h>
 
int main(void){
 
  FILE *fp;
  int c;
 
  fp = fopen("test.txt", "r");
  if (fp == NULL){
    printf("Can't open file!\n");
    return -1;
  }
 
  c = getc(fp);
 
  printf("getc: %c\n", (char)c);
 
  fclose(fp);
 
  return 0;
 
}
 

タグ:

+ タグ編集
  • タグ:

このサイトはreCAPTCHAによって保護されており、Googleの プライバシーポリシー利用規約 が適用されます。

最終更新:2010年07月08日 14:58