fork download
  1. /*char02.c*/
  2. #include <stdio.h>
  3.  
  4. int main(void){
  5. // your code goes here
  6. char a1,a2,a3;
  7.  
  8. a1='A';
  9. a2='B';
  10. a3='C';
  11.  
  12. printf("a1=%d,a2=%d,a3=%d\n",a1,a2,a3);
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
a1=65,a2=66,a3=67