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 diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
What is volatile c?
What is string constants?
What is the difference between fork() and vfork()?
. Explain the differences between fork() and exec() in C
how to find binary of number?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What are file streams?
How can I copy just a portion of a string?
how to reverse string "Hello World" by using pointers only. Without any temp var