Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Is javascript based on c?

0 Answers  


a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if

0 Answers  


I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.

0 Answers   Oracle,


main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


What is the use of ?: Operator?

0 Answers  


What is meant by 'bit masking'?

0 Answers  


control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent

1 Answers  


Explain following declaration int *P(void); and int (*p)(char *a);

3 Answers  


What is the process to generate random numbers in c programming language?

0 Answers  


What is meant by realloc()?

0 Answers  


What are header files in c programming?

0 Answers  


Write a c program to demonstrate character and string constants?

0 Answers  


Categories