what is difference between ++(*p) and (*p)++
Answer Posted / arasu
++(*p)-->after the value is incremented, next line is
executed.
(*p)++-->after execution,it is incremented.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is pointer to pointer in c?
What is a null string in c?
What does the c preprocessor do?
Why main is not a keyword in c?
What is uint8 in c?
What is #include stdio h?
What are the usage of pointer in c?
how should functions be apportioned among source files?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
In which header file is the null macro defined?
Where static variables are stored in memory in c?
What is union in c?
What is the difference between mpi and openmp?
What is the use of parallelize in spark?
Can we increase size of array in c?