what is difference between ++(*p) and (*p)++
Answer Posted / ravi
++(*p)-> indicates increment the value pointed by pointer p.
(*p)++ -> indicates increment the address of p then retrieve
the value pointed to by p.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Where can I get an ansi-compatible lint?
What are the similarities between c and c++?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
How many parameters should a function have?
How can you tell whether a program was compiled using c versus c++?
How can you read a directory in a C program?
Explain what are bus errors, memory faults, and core dumps?
how to find anagram without using string functions using only loops in c programming
What is the use of getch ()?
What are the disadvantages of c language?
Which programming language is best for getting job 2020?
Explain the process of converting a Tree into a Binary Tree.
What is openmp in c?
Is it valid to address one element beyond the end of an array?
What is wrong with this code?