what is difference between ++(*p) and (*p)++

Answer Posted / vicky

++(*p)means first incrementing and then performing the
operation;
(*p)++ means first performing the operation and then
incrementing.

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2232


how to create duplicate link list using C???

2081


What does the error message "DGROUP exceeds 64K" mean?

729


What is c language and why we use it?

626


What do you mean by keywords in c?

632






What does do in c?

613


Can you please explain the difference between strcpy() and memcpy() function?

606


why return type of main is not necessary in linux

1710


What is the code for 3 questions and answer check in VisualBasic.Net?

1696


What are bitwise shift operators in c programming?

650


Write a factorial program using C.

647


Whats s or c mean?

597


Explain the binary height balanced tree?

730


How can I get the current date or time of day in a c program?

654


Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.

2659