wt is diference between int and int pointer as same as
float and float pointer and char and char pointer
Answer Posted / vilas soni++
"int" can give it's value, and
we can put any integer value in it directly.
while "pointer" of an integer can give value of an
integer what's address it contain, and
we can not put any integer value in it directly like :
int *p;
p = 65201;
it will give error.......
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
write a program for the normal snake games find in most of the mobiles.
Explain the use of fflush() function?
What is s or c?
What does char * * argv mean in c?
Is c call by value?
Why c is faster than c++?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
how can I convert a string to a number?
Why is main function so important?
Why is not a pointer null after calling free?
Explain how can you avoid including a header more than once?
Explain how do you print only part of a string?
What does the && operator do in a program code?
Differentiate between static and dynamic modeling.
What are the benefits of c language?