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 meant by high-order and low-order bytes?
What is meant by preprocessor in c?
What are preprocessor directives in c?
What is adt in c programming?
Why we use break in c?
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)
Does sprintf put null character?
Why does not c have an exponentiation operator?
What is the difference between new and malloc functions?
What is header file in c?
What is ctrl c called?
Is multithreading possible in c?
What is the difference between #include and #include 'file' ?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Can a void pointer point to a function?