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

Answers were Sorted based on User's Feedback



what is disadvantage of pointer in C..

Answer / patel arbaz

The value of pointer can be changed at any given time using
call by reference
and the answer may get wrong....

Is This Answer Correct ?    0 Yes 0 No

what is disadvantage of pointer in C..

Answer / adesh

as per Security point of view pointer is not safe. A lot of
threads are exist like buffer overflow problems.

Is This Answer Correct ?    7 Yes 8 No

what is disadvantage of pointer in C..

Answer / 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

More C Interview Questions

What is that continue statement??

4 Answers  


What is the newline escape sequence?

0 Answers  


why the execution starts from main function

9 Answers  


Why preprocessor should come before source code?

2 Answers  


Compare array data type to pointer data type

0 Answers  


How pointer is different from array?

0 Answers  


how to print a statement in c without use of console statement ,with the help of if statement it should print

2 Answers   Satyam,


can we print any string in c language without using semicolon(;)(terminator) in whole program.

11 Answers  


WHAT IS MEANT BY LIFE?

2 Answers  


What are qualifiers and modifiers c?

0 Answers  


. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none

9 Answers   Oracle,


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


Categories