Can anybody tell me, the meaning of wild pointer in C, how to obtain it and is this available in C++?
Wild pointer is a pointer which declaration is present but it has not been defined yet.Means we have declare a pointer - data_type *ptr; //but not define which address it is containing *ptr=100//wild pointer does not point to any valid address.so we will get ERROR printf("ptr:%d",ptr);//we will get:0(in gcc compiler)