fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. void* pnull = NULL;
  5. int sneaky = 0;
  6. void* p = (void*)sneaky;
  7.  
  8. printf("%d", pnull == p);
  9. return 0;
  10. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
1