fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char c='g';
  5. int x=55;
  6. printf("%c,%d\n",c,c);
  7. printf("%d,%c\n",x,x);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
g,103
55,7