fork(8) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x = 'a' * 2;
  5. char y = 'a' * 2;
  6. printf("x: %d\n", x);
  7. printf("y: %d\n", y);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
x: 194
y: -62