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
Can a pointer be null?
What is the use of putchar function?
Explain is it valid to address one element beyond the end of an array?
How many levels of pointers can you have?
What are the types of data structures in c?
What is the need of structure in c?
What is page thrashing?
Explain what does it mean when a pointer is used in an if statement?
Define VARIABLE?
What’s a signal? Explain what do I use signals for?
What is printf () in c?
Write a program which returns the first non repetitive character in the string?
Explain how can you be sure that a program follows the ansi c standard?
What do you mean by keywords in c?
find the sum of two matrices and WAP for it.