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 are identifiers c?
How can I dynamically allocate arrays?
What is extern keyword in c?
What is the ANSI C Standard?
Can the “if” function be used in comparing strings?
Differentiate between ordinary variable and pointer in c.
What is header file in c?
What are the differences between new and malloc in C?
What is the use of extern in c?
Simplify the program segment if X = B then C ← true else C ← false
What are qualifiers?
I heard that you have to include stdio.h before calling printf. Why?
What is a static variable in c?
Subtract Two Number Without Using Subtraction Operator
How can I delete a file?