C examples for stddef.h:nullptr_t
data type
<cstddef>
Null pointer type (C++)
typedef decltype(nullptr) nullptr_t;
#include <stdio.h> #include <stddef.h> int main ()//from www . j a va 2 s .c o m { nullptr_t p0; printf ("%u\n",p0); return 0; }