what is disadvantage of pointer in C
Answer Posted / ravi joshi
Pointers is a wonderful concept if used carefully and in a
fully understood manner. Only drawback with pointers is
using multiple levels of dereferencing which leads to
confusion and most of the time data corruption and program
crash. Most dangerous thing with pointers I have experienced
is typecasting !!!
| Is This Answer Correct ? | 36 Yes | 8 No |
Post New Answer View All Answers
What is double pointer?
What does %c do in c?
What is the sizeof () a pointer?
What is ponter?
What is a wrapper function in c?
Do pointers store the address of value or the actual value of a variable?
What is register variable in c language?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What is the collection of communication lines and routers called?
What is derived datatype in c?
What does %c mean in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is a method in c?
How can I read a binary data file properly?