what is difference between ++(*p) and (*p)++
Answer Posted / srinivas
++(*p)as this means the first the addres is increneted and
then address is assgined
*p++ as this mean that the address is assign to it then the
address is incremented
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is c language and why we use it?
#include
When a c file is executed there are many files that are automatically opened what are they files?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What should malloc() do?
How to define structures? ·
What is the translation phases used in c language?
How do shell structures work?
What is an lvalue in c?
What is getche() function?
What is the stack in c?
How can you pass an array to a function by value?
List a few unconditional control statement in c.
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How do we make a global variable accessible across files? Explain the extern keyword?