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 that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is zero based addressing?
Can I initialize unions?
Explain how can I prevent another program from modifying part of a file that I am modifying?
How to set file pointer to beginning c?
What is infinite loop?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
What are structures and unions? State differencves between them.
how we can make 3d venturing graphics on outer interface
Why c is procedure oriented?
What are loops in c?
If you know then define #pragma?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Explain the difference between the local variable and global variable in c?
What's the right way to use errno?