How can I create an array of pointer using **P and point it to NULL?
Let's say I have coded as below .
struct s
{
float a ;
char x ;
} ;
s **p ;
p = new ( s * [10] ) ;
Now I want to make some of them as NULL
p[0] = NULL ;
p[5] = NULL ;
If I simply coded as above then it gives me a warning and also the above method is wrong in how it makes the variable NULL. So how to do I do this?