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