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

What is the use of a semicolon (;) at the end of every program statement?

1 Answers  


what is the difference between NULL & NUL keywords in C?

3 Answers  


Why preprocessor should come before source code?

2 Answers  


What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }

4 Answers   ADITI,


There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?

8 Answers   Google,


what will happen if you free a pointer twice after allocating memory dynamically ?

3 Answers   Novell,


How does free() know explain how much memory to release?

0 Answers  


WHY DO WE USE A TERMINATOR IN C LANGUAGE?

2 Answers  


What are operators in c?

0 Answers  


WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?

4 Answers  


What are the advantages of union?

0 Answers  


What is the exact difference between '\0' and ""

3 Answers  


Categories