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
Explain about the constants which help in debugging?
Is c call by value?
Apart from dennis ritchie who the other person who contributed in design of c language.
Explain indirection?
Is main an identifier in c?
Explain what is the benefit of using enum to declare a constant?
Is null equal to 0 in sql?
What is the meaning of 2d in c?
Is it possible to pass an entire structure to functions?
What is difference between structure and union in c?
using only #include
Why is c called a structured programming language?
Can true be a variable name in c?
Explain Function Pointer?
What is the use of header?