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 / likhit gatagat

pointers in C are variables storing address of some another
memory variable/location to which they are pointing

e.g: int *p;
int s;
p=&s;

now if s has memory address 101 then p will be storing
this address i.e pointing to variable s

Is This Answer Correct ?    17 Yes 0 No

what is pointer?..

Answer / manoj singh

pointer is a just like a simple veriable as hold down the
address of another veriable.
it's value denoted by *.

Is This Answer Correct ?    6 Yes 1 No

what is pointer?..

Answer / vijaya

By default functions are extern, so it is visible from the outer files. If it is as static then it is in invisible from the outer files.

Is This Answer Correct ?    0 Yes 0 No

what is pointer?..

Answer / sridhar

Pointers are the variables,which are used to store address of the another variable.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Is there anything like an ifdef for typedefs?

0 Answers  


Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?

0 Answers   Genpact,


find the sum of two matrices and WAP for it.

0 Answers   Huawei,


c program to input values in a table(using 2D array) and print odd numbers from them

1 Answers  


Using which language Test cases are added in .ptu file of RTRT unit testing???

0 Answers  


What is hash table in c?

0 Answers  


what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }

3 Answers   Honeywell,


i need all types of question paper releted to "c" and other language.

0 Answers  


A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

0 Answers  


How to find the usage of memory in a c program

1 Answers   Infosys,


What is double pointer in c?

0 Answers  


how to do in place reversal of a linked list(singly or doubly)?

3 Answers  


Categories