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 function be forced to be inline? Also, give a comparison between inline function and the C macro?
What does the error message "DGROUP exceeds 64K" mean?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Can we replace the struct function in tree syntax with a union?
What is atoi and atof in c?
What is the difference between #include
Explain what are linked list?
What is a structure in c language. how to initialise a structure in c?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
explain how do you use macro?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Describe the modifier in c?
Explain how can I pad a string to a known length?
Why we use int main and void main?
What is the usage of the pointer in c?