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
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Difference between Function to pointer and pointer to function
What is an auto keyword in c?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
write a c program in such a way that if we enter the today date the output should be next day's date.
What are bitwise shift operators in c programming?
How do you determine a file’s attributes?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What does %2f mean in c?
What is the purpose of macro in C language?
Describe the order of precedence with regards to operators in C.
How does placing some code lines between the comment symbol help in debugging the code?
Give differences between - new and malloc() , delete and free() ?
What is the scope of global variable in c?
How is null defined in c?