what is difference between ++(*p) and (*p)++
Answer Posted / vicky
++(*p)means first incrementing and then performing the
operation;
(*p)++ means first performing the operation and then
incrementing.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is identifier in c?
What are the scope of static variables?
What is the purpose of ftell?
What are the functions to open and close file in c language?
What is call by reference in functions?
What are the advantages of external class?
given post order,in order construct the corresponding binary tree
what is the role you expect in software industry?
Why is struct padding needed?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Is c pass by value or reference?
How can I avoid the abort, retry, fail messages?
Are global variables static in c?
What are terms in math?
What is a nested loop?