Advertisements
Advertisements
Question
State True or False with reason.
The statement void p; is valid.
True or False
Solution
The statement void p; is valid. True
shaalaa.com
Pointer
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
What is pointer? Explain how the pointer variable declared and initialized.
Select the correct option from multiple choice question.
void main() {
char a[]= “Hello world”;
char *p;
p=a;
printf(“\n%d%d%d%d”,sizeof(a),sizeof(p),strlen(a),strlen(p) ); }
State True or False with reason.
Size of pointer variable is equal to the datatype it points to.