fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6. char a = 120, b = 10;
  7.  
  8. a = a + b;
  9.  
  10. printf("%d\t",a);
  11.  
  12. printf("%dhere b%d \n",b,a);
  13. printf("%d\n", a - b - 4);
  14.  
  15. return 0;
  16.  
  17.  
  18.  
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
-126	10here b-126 
-140