fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. if(0 == NULL)
  5. {
  6. printf("0 == NULL\n");
  7. }
  8. else
  9. {
  10. printf("0 != NULL\n");
  11. }
  12. }
  13.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
0 == NULL