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 is the difference between abs() and fabs() functions?
What is the argument of a function in c?
Explain about the functions strcat() and strcmp()?
What was noalias and what ever happened to it?
#include
What is the return type of sizeof?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
differentiate built-in functions and user – defined functions.
Is array a primitive data type in c?
what is different between auto and local static? why should we use local static?
When should a type cast not be used?
Why is c so powerful?
Explain what are global variables and explain how do you declare them?
How do I use strcmp?