fork download
  1. #include <stdio.h>
  2. #include <typeinfo>
  3.  
  4. #define STRINGIFY_IMPL(A) #A
  5. #define STRINGIFY(A) STRINGIFY_IMPL(A)
  6.  
  7. int main(void) {
  8. printf("%s\n",STRINGIFY(NULL));
  9. printf("%s\n",typeid(NULL).name());
  10. // your code goes here
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
__null
i