Dynamically prepare an array of pointers with Null value

how could I dynamically preapre an array of pointers with null value??
Adj=(node**)calloc(sizeof(node*),n);
does this gives Adj[j]=null??