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...


what is pointer ?

Answers were Sorted based on User's Feedback



what is pointer ?..

Answer / amit kamble

POINTER HOLDS THE ADRESS OF THE OTHER VARIABLE;

Is This Answer Correct ?    6 Yes 1 No

what is pointer ?..

Answer / prakash dasari

pointer is also like an ordinary variable which can hold
some data. But the difference is it holds the memory
address where that particular variable is stored.
so pointer is a memory varible which holds the valid
address of similar type. that is integer pointer have to
use to hold the address of the integer variable to avoid
the unexpected results. so to store the float varible data
use float pointer only for datasafe.

Is This Answer Correct ?    3 Yes 0 No

what is pointer ?..

Answer / ramakant kisan karnekar

Pointer is a value variable it stores the address of
another variable
ex
int a=10;
int *p;
p=&x;

Is This Answer Correct ?    2 Yes 0 No

what is pointer ?..

Answer / s.s.venkatesh

Pointer is also a variable,that is used to refer the memory
location of the particular variable(that is pointer
variable).
In pointer,we can get address of the particular variable by
using ambuson(&) symbol.
we can get the value by using asterisk(*) symbol.

Is This Answer Correct ?    1 Yes 0 No

what is pointer ?..

Answer / ravishankar b.m

pointer is a variable which holds the address of another
variable.
only integer pointer can be used for pointer.
eg: int *ptr

Is This Answer Correct ?    1 Yes 0 No

what is pointer ?..

Answer / vignesh1988i

pointer is a secondary constant and a derived data type which can hold a address or point to a particular memory location (LOGICALLY) of the same data type in which pointer variable has been declared......

syntax :
(data type) *variable_name;

integer pointer can hold only integer variable address
character pointer can hold only character variable address
floating pointer can hold only float variable address


thank u

Is This Answer Correct ?    0 Yes 0 No

what is pointer ?..

Answer / deepa.g

Pointer is stores the address of the another variable.

Is This Answer Correct ?    0 Yes 0 No

what is pointer ?..

Answer / jai

It is variable that holds the address of another variable..
As ordinary varible pointer also has datatype. So, It
stores only address of the variable of the same type.

Is This Answer Correct ?    0 Yes 0 No

what is pointer ?..

Answer / ankith.v

pointer Is a Variable.
A Variable which Stores The Address Of Another Variable is
called as Pointer

Is This Answer Correct ?    0 Yes 0 No

what is pointer ?..

Answer / rina

pointer contains memory adresses as teir values since tese
memory addresses are the locations in the computer memory
are stored.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is echo in c programming?

0 Answers  


Write a code to generate divisors of an integer?

0 Answers   Ericsson,


Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.

1 Answers   TCS,


What is a union?

0 Answers  


Explain how can type-insensitive macros be created?

0 Answers  


What is wild pointer in c?

0 Answers  


which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none

7 Answers   Trident,


Mention four important string handling functions in c languages .

0 Answers  


What is the use of define in c?

0 Answers  


Write a program to find minimum between three no.s whithout using comparison operator.

4 Answers   IBM,


a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?

6 Answers   Geometric Software,


design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.

2 Answers  


Categories