fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6. while (1)
  7. {
  8. char c;
  9. printf("請輸入一個字元:");
  10. scanf(" %c",&c); //point
  11. printf("%c\n",c);
  12.  
  13. }
  14.  
  15. }
  16.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty