what is disadvantage of pointer in C
Answer Posted / yogesh rajoriya
normally pointer workes with address and if we can find the
address of any locatiion of hardware any one can easly
currpt the data that is the bigest problem with pointer but
still the os is written in c language that is not understand
by me
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What math functions are available for integers? For floating point?
What is character constants?
Where are local variables stored in c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Do you know the difference between exit() and _exit() function in c?
Explain the difference between malloc() and calloc() in c?
Explain how do you determine whether to use a stream function or a low-level function?
Differentiate between full, complete & perfect binary trees.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What are the 5 types of inheritance in c ++?
What are different types of variables in c?
What is the concatenation operator?
What is the purpose of realloc()?
What is difference between Structure and Unions?