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 ? what is the use of pointer?

Answers were Sorted based on User's Feedback



what is pointer ? what is the use of pointer?..

Answer / m.karthiga

pointer is a variable it contains address of the another
variable..pointer saves the memory space then other
variables

Is This Answer Correct ?    9 Yes 1 No

what is pointer ? what is the use of pointer?..

Answer / naresh kaushik

pointer is a variable .but it is not a ordinary
variable.it contain the address of other variable and point
the memory locations dircetly.

Is This Answer Correct ?    2 Yes 0 No

what is pointer ? what is the use of pointer?..

Answer / gouse mohiddin

A Pointer is a variable which holds the memory address of
the another variable
pointers are used to save and find the memory address of
the another variable.
The syntax is as shown below. You start by specifying the
type of data stored in the location identified by the
pointer. The asterisk tells the compiler that you are
creating a pointer variable. Finally you give the name of
the variable.
type * variable name

Example:

int *ptr;
float *string;
Address operator:

Once we declare a pointer variable we must point it to
something we can do this by assigning to the pointer the
address of the variable you want to point as in the
following example:

ptr=&num;

This places the address where num is stores into the
variable ptr. If num is stored in memory 21260 address then
the variable ptr has the value 21260.

Is This Answer Correct ?    2 Yes 0 No

what is pointer ? what is the use of pointer?..

Answer / rama krishna sidhartha

Pointer is the address of the another variable.

It saves the memory space of another variables.

Is This Answer Correct ?    1 Yes 0 No

what is pointer ? what is the use of pointer?..

Answer / guest

pointer is pointing to the addresss location

Is This Answer Correct ?    1 Yes 1 No

what is pointer ? what is the use of pointer?..

Answer / sri harsha

pointer is lock to house.house is any data.mainly for
saving space,security we will use pointers.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

What is the difference between a function and a method in c?

0 Answers  


C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions

0 Answers  


sir, i cannot find the way how to write aprogram by using array on queue

1 Answers   IISIT,


what are the uses of structure?

7 Answers   HCL,


How to use c/c++ code in JAVA

10 Answers   CDAC, IBM, Satyam, Scope International,


what is meant by flushll() in c programming?

1 Answers  


Can a variable be both const and volatile?

0 Answers  


how to capitalise first letter of each word in a given string?

0 Answers  


What is the difference between malloc() and calloc()?

3 Answers  


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

4 Answers   IBM,


given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)

6 Answers   amu, TCS,


What is Conio.h ?

2 Answers   TCS,


Categories