what is difference between ++(*p) and (*p)++
Answer Posted / pooja
++(*p) means that first increment the value which is in
pointer p and then starts further execution.
(*p)++ means that first value is assigned and then
incremented.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is fflush() function?
Can you write the function prototype, definition and mention the other requirements.
Explain what are multidimensional arrays?
List some of the dynamic data structures in C?
How can I generate floating-point random numbers?
How can you be sure that a program follows the ANSI C standard?
Can we declare function inside main?
Why structure is used in c?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Tell me about low level programming languages.
Write a program in c to replace any vowel in a string with z?
How do I swap bytes?
Write a program to check armstrong number in c?
Differentiate between static and dynamic modeling.
What is the difference between malloc calloc and realloc in c?