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
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
How can I ensure that integer arithmetic doesnt overflow?
Who developed c language and when?
Explain the use of #pragma exit?
Which type of language is c?
What 'lex' does?
How to find a missed value, if you want to store 100 values in a 99 sized array?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Are the variables argc and argv are always local to main?
What is s or c?
what type of questions arrive in interview over c programming?
What is getch () for?
Is c dynamically typed?
explain what is a newline escape sequence?
Can a program have two main functions?