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


Please Help Members By Posting Answers For Below Questions

.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

697


Why #include is used in c language?

586


What are the 4 types of programming language?

574


What is equivalent to ++i+++j?

637


what value is returned to operating system after program execution?

1593






How do you determine the length of a string value that was stored in a variable?

642


What is static and volatile in c?

773


What is a double c?

580


Why is c known as a mother language?

738


Why C language is a procedural language?

612


What are reserved words with a programming language?

593


I came across some code that puts a (void) cast before each call to printf. Why?

669


How old is c programming language?

569


How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?

1580


Can a variable be both constant and volatile?

552