fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char a = 90;
  5. char b = 80;
  6.  
  7. char sum = 0;
  8. sum = a+b;
  9. printf("a + b 의 값은 : %c", sum);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
a + b 의 값은 : �