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
What is integer constants?
What is the use of function in c?
What is typedf?
Can we use visual studio for c?
Do array subscripts always start with zero?
What is header file definition?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Explain do array subscripts always start with zero?
What is structure in c definition?
What is a function in c?
What Is The Difference Between Null And Void Pointer?
What is a structure and why it is used?
what is uses of .net
Explain what is the difference between far and near ?
Why is void main used?