what is difference between ++(*p) and (*p)++
Answer Posted / ravi
++(*p)-> indicates increment the value pointed by pointer p.
(*p)++ -> indicates increment the address of p then retrieve
the value pointed to by p.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are the types of bitwise operator?
Are bit fields portable?
I have a varargs function which accepts a float parameter?
What do you mean by dynamic memory allocation in c? What functions are used?
What is difference between class and structure?
What is #include stdio h and #include conio h?
What does the c in ctime mean?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
How do you define structure?
What does void main () mean?
What are the parts of c program?
Why we use break in c?
What are c preprocessors?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Explain the difference between the local variable and global variable in c?