fork download
  1. #include<stdio.h>
  2. #include<string.h>
  3.  
  4. int main(){
  5. char filename[FILENAME_MAX];
  6. char buffer;
  7. FILE*fp;
  8.  
  9. strcpy(filename,"/dev/stdin");
  10. if((fp = fopen(filename,"r")) == NULL){
  11. printf("ファイル%sが見つかりません。\n",filename);
  12. return(-1);
  13. }
  14.  
  15. while((buffer = fgetc(fp))!=EOF){
  16. printf("%c",buffer);
  17. }
  18. fclose(fp);
  19. }
Runtime error #stdin #stdout 0.02s 1808KB
stdin
Standard input is empty
stdout
ファイル/dev/stdinが見つかりません。