fork download
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4.  
  5. int main() {
  6. void * const p = 0xfac1234;
  7. printf("%p\t%p\n" , p, NULL);
  8. printf("%#p\t%#p\n", p, NULL);
  9.  
  10. return EXIT_SUCCESS;
  11. }
  12.  
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
0xfac1234	(nil)
0xfac1234	(nil)