fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main (void)
  4. {
  5. char ch = 'a';
  6. printf("ch = %c\n",ch);
  7. printf("ASSIC of ch= %d\n",ch);
  8.  
  9. system("pause");
  10. return 0;
  11. }
Success #stdin #stdout #stderr 0s 5280KB
stdin
Standard input is empty
stdout
ch = a
ASSIC of ch= 97
stderr
sh: 1: pause: not found