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 disadvantage of pointer in C

Answer Posted / vipin gupta

We can access restricted memory area.
Ex. const. int x;
x=10;
int *p;
p=&x;
*p=20;

variable declared as Constant cann't be changed but by using pointers we can do so.

Is This Answer Correct ?    1 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

diff between exptected result and requirement?

2117


What is c basic?

1228


write a c program to calculate sum of digits till it reduces to a single digit using recursion

3384


What does & mean in scanf?

1168


Explain the properties of union.

1138


What is the difference between procedural and functional programming?

1137


What does 3 mean in texting?

1170


What is a #include preprocessor?

1227


What is the correct code to have following output in c using nested for loop?

1125


What are types of functions?

1080


How can I write functions that take a variable number of arguments?

1194


how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.

1740


What is structure in c explain with example?

1219


What library is sizeof in c?

1143


What is main () in c language?

1188