what is difference between ++(*p) and (*p)++
Answer Posted / pooja
++(*p) means that first increment the value which is in
pointer p and then starts further execution.
(*p)++ means that first value is assigned and then
incremented.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Who developed c language and when?
What is typeof in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Which is better pointer or array?
Write a program to reverse a given number in c language?
What are the Advantages of using macro
How to create struct variables?
What is double pointer in c?
What is a stream water?
What is static and auto variables in c?
List the difference between a "copy constructor" and a "assignment operator"?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
List some applications of c programming language?
Why is C language being considered a middle level language?
using only #include