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?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the complete rules for header file searching?

1130


What are qualifiers in c?

1086


Explain high-order bytes.

1176


What is the difference between class and object in c?

1236


How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?

1074


What are structure types in C?

1151


What is the c language function prototype?

1138


What does != Mean in c?

1091


What does void main return?

1193


write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

1994


What is difference between far and near pointers?

1104


Explain why can’t constant values be used to define an array’s initial size?

1398


What is console in c language?

1139


What are the advantage of c language?

1105


How can I discover how many arguments a function was actually called with?

1112