wt is diference between int and int pointer as same as
float and float pointer and char and char pointer

Answers were Sorted based on User's Feedback



wt is diference between int and int pointer as same as float and float pointer and char and char p..

Answer / ravikumar

int gives the value of the integer but int pointer gives
address of the integer value

Is This Answer Correct ?    38 Yes 2 No

wt is diference between int and int pointer as same as float and float pointer and char and char p..

Answer / shiva

* int Variable Stores a integer Value..
int pointer Stores a address of a integer Variable

* Float Variable Stores a Float Value..
Float pointer Stores a address of a Float Variable

* Char Variable Stores a Single Character
Char Pointer Stores Sequence of Characters

Is This Answer Correct ?    9 Yes 1 No

wt is diference between int and int pointer as same as float and float pointer and char and char p..

Answer / 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

wt is diference between int and int pointer as same as float and float pointer and char and char p..

Answer / vinay

int is datatype and int pointer is datatype with address

Is This Answer Correct ?    2 Yes 3 No

wt is diference between int and int pointer as same as float and float pointer and char and char p..

Answer / khajasirajuddin shaik

int is datatype which specifies integer type of data,where as int pointer specifies the address of an integer type variable

Is This Answer Correct ?    3 Yes 4 No

wt is diference between int and int pointer as same as float and float pointer and char and char p..

Answer / jeeva

pointers always stores the address of the variable that it
is referred to....

when it is int pointer it means that the value at the
address that pointer holds is a integer (whole number)....


when it is char pointer it means that the value at the
address that pointer holds is a character....


when it is float pointer it means that the value at the
address that pointer holds is a floating point number....

Is This Answer Correct ?    1 Yes 3 No

wt is diference between int and int pointer as same as float and float pointer and char and char p..

Answer / mohit (firozabad, a.d.college)

Pointer is a variable that hold the address of another
variable so address always integer type
The pointer type can not be char,float, etc

Is This Answer Correct ?    0 Yes 2 No

wt is diference between int and int pointer as same as float and float pointer and char and char p..

Answer / herok

int variable takes interger values but int pointer can take
address of an integer variable and also int variable takes
mainly 2 bytes and int pointer takes 4 bytes of memory
space.

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More C Interview Questions

write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR

5 Answers  


Dear Sir, we are required the bubble sorting programs Regs Prem

1 Answers  


regarding pointers concept

0 Answers  


What is hashing in c?

0 Answers  


Can you write the algorithm for Queue?

0 Answers   College School Exams Tests, TCS,






triangle number finding program...

1 Answers   HCL,


how to write hello word without using semicolon at the end?

6 Answers   Accenture,


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

0 Answers  


i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement

5 Answers  


write a recursive program in'c'to find whether a given five digit number is a palindrome or not

2 Answers  


main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????

1 Answers  


How. To pass the entrance test

1 Answers   Tech Mahindra,


Categories