what is difference between ++(*p) and (*p)++
Answer Posted / tejas
value that contained in p is incremented. (p is pointer.)
++(*p) --> pre-increment.
(*p)++ --> post-increment.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What does it mean when a pointer is used in an if statement?
What is c language and why we use it?
Which is best linux os?
Why is c so important?
Why n++ execute faster than n+1 ?
Why ca not I do something like this?
What are the header files used in c language?
Explain setjmp()?
What does %2f mean in c?
What is property type c?
What are the functions to open and close file in c language?
What is the difference between mpi and openmp?
What is multidimensional arrays
What are the 5 data types?
what are bit fields? What is the use of bit fields in a structure declaration?