fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. signed char variable1;
  5. variable1 = 128;
  6. printf("the value is: %d", variable1);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
the value is: -128