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
diff between exptected result and requirement?
What is c basic?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What does & mean in scanf?
Explain the properties of union.
What is the difference between procedural and functional programming?
What does 3 mean in texting?
What is a #include preprocessor?
What is the correct code to have following output in c using nested for loop?
What are types of functions?
How can I write functions that take a variable number of arguments?
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.
What is structure in c explain with example?
What library is sizeof in c?
What is main () in c language?