fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6. if('0'=='\0')
  7. printf("iguais");
  8. else
  9. printf("diferentes");
  10.  
  11. printf("\n%s",NULL==0?"null==0":"null!=0");
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
diferentes
null==0