Answer Posted / 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 |
Post New Answer View All Answers
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
what will be the output for the following main() { printf("hi" "hello"); }
Can a pointer point to null?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
What is the return type of sizeof?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
what is use of malloc and calloc?
How is actual parameter different from the formal parameter?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What are valid operations on pointers?
What are header files and explain what are its uses in c programming?
What are the main characteristics of c language describe the structure of ac program?
How old is c programming language?
Is c is a procedural language?