fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int data =-10;
  8. if(data<0){
  9. printf("入力エラー\n");
  10. }
  11. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
入力エラー