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