fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. char a = -128;
  6. char b = 50;
  7.  
  8. printf("%d\n", a - b);
  9.  
  10. char r = a - b;
  11. printf("%d\n", r);
  12. // your code goes here
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
-178
78