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

What is wrong with this statement? Myname = 'robin';

1325


What is fflush() function?

1134


In which header file is the null macro defined?

1342


In a switch statement, explain what will happen if a break statement is omitted?

1072


How can I write a function that takes a format string and a variable number of arguments?

1056


Why is it usually a bad idea to use gets()? Suggest a workaround.

1786


What is the difference between far and near ?

1193


What are header files? What are their uses?

1212


Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?

1069


What are the 4 data types?

1019


Difference between malloc() and calloc() function?

1199


What is c value paradox explain?

1092


What are the 32 keywords in c?

1094


What is null pointer constant?

1164


write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

1938