Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

Answer Posted / srinivas

++(*p)as this means the first the addres is increneted and
then address is assgined

*p++ as this mean that the address is assign to it then the
address is incremented

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is c language and why we use it?

1123


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

6397


When a c file is executed there are many files that are automatically opened what are they files?

1153


main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above

1153


What should malloc() do?

1223


‎How to define structures? · ‎

1149


What is the translation phases used in c language?

1174


How do shell structures work?

1174


What is an lvalue in c?

1181


What is getche() function?

1089


What is the stack in c?

1229


How can you pass an array to a function by value?

1180


List a few unconditional control statement in c.

1030


What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

1191


How do we make a global variable accessible across files? Explain the extern keyword?

1940