fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char a;
  6. a='X';
  7. char b;
  8. b='Y';
  9. char c;
  10. c='Z';
  11. printf("a=%a\n",a);
  12. printf("b=%b\n",b);
  13. printf("c=%c\n",c);
  14. printf("End of program\n");
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
a=0x0.07ffea6c58fc9p-1022
b=%b
c=Z
End of program