fork(1) download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. const c = -11;
  5. const int d = 34;
  6. printf("%d, %d\n", c, d);
  7. return 0;
  8. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
-11, 34