I'm looking for the official documentation or documentation alternative to the official one which explains the (nil) locution in C, but it seems very difficult to find it. Could you suggest me where to find it please?
I got (nil) address when I tried to print, with printf and %p, the address of a not initialized int pointer.
#include <stdlib.h>
#include <stdio.h>
int main()
{
int *pi;
printf("Indirizzo pi: %p\n", pi);
return 0;
}
EDIT: my goal is to get more informations about the word nil; I know that my example is wrong because I didn't initialized the pointer, I used it only to show you where I found nil.