diff. between *p and **p

Answers were Sorted based on User's Feedback



diff. between *p and **p..

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

diff. between *p and **p..

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

diff. between *p and **p..

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

Post New Answer

More C Interview Questions

what is meant by flushll() in c programming?

1 Answers  


Write down the program to sort the array.

4 Answers   Impiger,


What is else if ladder?

1 Answers  


Tell us something about keyword 'auto'.

1 Answers  


please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code

1 Answers   Mind Tree,


what is unsigened char and what is the difference from char

2 Answers  


Tell me is null always defined as 0(zero)?

1 Answers  


program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5

8 Answers   Infosys,


Is there a way to jump out of a function or functions?

1 Answers  


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.

1 Answers   Amazon,


What is the difference between scanf and fscanf?

1 Answers  


Can you write the function prototype, definition and mention the other requirements.

1 Answers   Adobe,


Categories