Advertisements
Advertisements
प्रश्न
State True or False with reason.
The statement void p; is valid.
सत्य या असत्य
उत्तर
The statement void p; is valid. True
shaalaa.com
Pointer
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
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.