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
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
What are register variables in c?
Explain how do you view the path?
Can the sizeof operator be used to tell the size of an array passed to a function?
What are different storage class specifiers in c?
what do the 'c' and 'v' in argc and argv stand for?
How do I swap bytes?
What are identifiers c?
Describe static function with its usage?
What is a scope resolution operator in c?
What is a stream?
How can I find out the size of a file, prior to reading it in?
Where can I get an ansi-compatible lint?
What is meant by recursion?
Explain what is wrong in this statement?