diff. between *p and **p
Answers were Sorted based on User's Feedback
Answer / virag shah
*p is a simple pointer which holds the address of another
variable.
while **p is a double pointer which holds address of the
pointer in which actual address of the another variable is
stored.
| Is This Answer Correct ? | 30 Yes | 1 No |
Answer / abhijeet kankani
Ya,the person is riht *p is just pointer which holds the
address of any variable(identifier)
where as **p is pointer to pointer which holds
address of another pointer
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / sivavendra
yeah,,,its right,,,
*p is a ptr tat holds the address of another variable....where as **p is a double ptr which hold the address of another pointer and that pointer hold the address of the data....
| Is This Answer Correct ? | 0 Yes | 0 No |
Why do we write return 0 in c?
What does the file stdio.h contain?
Explain is it better to bitshift a value than to multiply by 2?
What is modifier & how many types of modifiers available in c?
What is c variable?
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?
Is there a way to switch on strings?
what is the maximum no. of bytes calloc can allocate
What are the advantages of using Unions?
What are linked lists in c?
p*=(++q)++*--p when p=q=1 while(q<=6)
What is array of structure in c programming?