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


hat is a pointer?

Answers were Sorted based on User's Feedback



hat is a pointer?..

Answer / satya.tivari

a pointer is a variable which stores an address of another
variable.

Is This Answer Correct ?    9 Yes 2 No

hat is a pointer?..

Answer / sumit mmmec

pointer provide the programmer direct access on memory
allocation.

Is This Answer Correct ?    5 Yes 1 No

hat is a pointer?..

Answer / vaibhav

it is a derived data type which holds the address of that
variable.

Is This Answer Correct ?    3 Yes 0 No

hat is a pointer?..

Answer / supercool

A pointer is a datatype whose value refers directly to (or "points to") another value stored elsewhere in the computer memory using its address.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Why does not c have an exponentiation operator?

0 Answers  


what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }

1 Answers  


12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

4 Answers   Accenture,


What does printf does?

0 Answers  


Explain how can I avoid the abort, retry, fail messages?

0 Answers  


#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }

12 Answers   Capital IQ, Sasken,


Disadvantages of C language.

0 Answers   Impetus,


write a program to generate 1st n fibonacci prime number

2 Answers  


What do you mean by team??

5 Answers   Student,


AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?

13 Answers   HCL,


Why do we use main function?

0 Answers  


int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????

1 Answers  


Categories