fork download
  1. #include <stdio.h>
  2.  
  3. int main (void) {
  4.  
  5. char a = 'a';
  6. char c;
  7.  
  8. printf("The value of a : %c\n", a);
  9.  
  10. a++;
  11.  
  12. printf("The value of a after increment : %c\n", a);
  13.  
  14. c = 99;
  15.  
  16. printf("The value of c : %c\n", c);
  17.  
  18. return 0;
  19.  
  20.  
  21. }
  22.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
The value of a : a
The value of a after increment : b
The value of c : c