fork(5) download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int a = 0;
  6. if (2 > 5)
  7. printf("True\n");
  8. a = 5;
  9.  
  10. printf("a=%d\n", a);
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
a=5