what is difference between ++(*p) and (*p)++
Answer Posted / kalai
++(*p)-->pre-increment.
(*p)++-->post-increment.
| Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
Is there any data type in c with variable size?
What is file in c preprocessor?
What is main function in c?
What is a const pointer?
Add Two Numbers Without Using the Addition Operator
What is difference between far and near pointers?
What is the function of volatile in c language?
What is static memory allocation? Explain
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What are c preprocessors?
What is unary operator?
What is the purpose of clrscr () printf () and getch ()?
how can f be used for both float and double arguments in printf? Are not they different types?
What is static volatile in c?
How will you declare an array of three function pointers where each function receives two ints and returns a float?