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

What is meant by high-order and low-order bytes?

856


What is meant by preprocessor in c?

753


What are preprocessor directives in c?

857


What is adt in c programming?

864


Why we use break in c?

771


write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)

1897


Does sprintf put null character?

811


Why does not c have an exponentiation operator?

829


What is the difference between new and malloc functions?

849


What is header file in c?

853


What is ctrl c called?

801


Is multithreading possible in c?

778


What is the difference between #include and #include 'file' ?

831


while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above

1006


Can a void pointer point to a function?

786