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 |
what is meant by flushll() in c programming?
Write down the program to sort the array.
What is else if ladder?
Tell us something about keyword 'auto'.
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
what is unsigened char and what is the difference from char
Tell me is null always defined as 0(zero)?
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
Is there a way to jump out of a function or functions?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is the difference between scanf and fscanf?
Can you write the function prototype, definition and mention the other requirements.