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 the need of structure in c?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
Why should I prototype a function?
write a recursive program in'c'to find whether a given five digit number is a palindrome or not
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
write a program for size of a data type without using sizeof() operator?
22 Answers HCL, IBM,
How does variable declaration affect memory?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
I need previous papers of CSC.......plz help out by posting them.......
Is it better to bitshift a value than to multiply by 2?
How does sizeof know array size?
Differentiate b/w Modify and Update commands giving example.