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
How is actual parameter different from the formal parameter?
Is main an identifier in c?
Explain low-order bytes.
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What do the functions atoi(), itoa() and gcvt() do?
What is multidimensional arrays
What are keywords c?
What is function and its example?
What is graph in c?
How macro execution is faster than function ?
is it possible to create your own header files?
What is the difference between ++a and a++?
Where are some collections of useful code fragments and examples?
Are there constructors in c?