what is difference between ++(*p) and (*p)++
Answer Posted / s.aswini
++(*p)-->it is denoted by first increment the value andthen
check the condition.
(*p)++-->it is denoted by first do the operation and then
increment the value.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Explain the use of 'auto' keyword in c programming?
What is the use of structure padding in c?
Should a function contain a return statement if it does not return a value?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Explain the use of keyword 'register' with respect to variables.
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Is it better to bitshift a value than to multiply by 2?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is hungarian notation? Is it worthwhile?
What are the 4 data types?
What are the advantages of using Unions?
Is main an identifier in c?
What is the c language function prototype?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?