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...

advantages of pointers?

Answer Posted / rams

Pointer is a variable that can store the address of another variable to which it's pointing

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is operator promotion?

1151


List a few unconditional control statement in c.

1029


Explain what is wrong with this program statement? Void = 10;

1313


What are the advantages of using new operator as compared to the function malloc ()?

1408


What is the main difference between calloc () and malloc ()?

1238


Why isn't it being handled properly?

1122


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

1131


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

1133


What is memory leak in c?

1175


What is wild pointer in c?

1128


Why does everyone say not to use gets?

1200


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

1107


What is const keyword in c?

1221


Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop

2210


Tell us the use of fflush() function in c language?

1203