Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - int x; So what is the following statement describing the pointer variable pb? int pb = & ampx; int * Pb = x; int * pb = & ampx;
int x; So what is the following statement describing the pointer variable pb? int pb = & ampx; int * Pb = x; int * pb = & ampx;
int * Pb = &; X is right!

This is the format of pointer initialization assignment;

Another one is: int *pb, x;

pb = & ampx; /* You can't add */