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