fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main (void)
  4. {
  5. char ch = '2';
  6.  
  7. printf("ch=%c\n",ch);
  8. printf("the ASSIC of ch is %d\n ",ch);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
ch=2
the ASSIC of ch is 50