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 the difference between normal variables and pointer
variables..............

Answers were Sorted based on User's Feedback



what is the difference between normal variables and pointer variables................

Answer / naga raju

a pointer is nothing more than an address, and a pointer variable is just a variable that can store an address.

Is This Answer Correct ?    2 Yes 0 No

what is the difference between normal variables and pointer variables................

Answer / vrushali

Hi Vighnesh,

Please explain the term data security.....


Thanks

Is This Answer Correct ?    13 Yes 13 No

what is the difference between normal variables and pointer variables................

Answer / priyanka

It gives the value stored at a particular address

Is This Answer Correct ?    0 Yes 1 No

what is the difference between normal variables and pointer variables................

Answer / rafiya

Variable is a name given to the memory location of the specified data type.
Pointers are the variables which are capable of storing another variable's address.

Is This Answer Correct ?    0 Yes 1 No

what is the difference between normal variables and pointer variables................

Answer / nibedita

Pointers will store the variable address and normal variable
will store the variable value. But if you will declare int *p;
int i=10; and you want to accsess the memory of i you have
to write p=&i; But i can access directly the memory adress
of variable through printf("%d",&i); Then wht is the
difference between pointer and normal variable?

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More C Interview Questions

which one is better structure or union?(other than the space occupied )

2 Answers  


Explain do array subscripts always start with zero?

0 Answers  


What do you mean by dynamic memory allocation in c?

0 Answers  


what is the difference between const char *p, char const *p, const char* const p

5 Answers   Accenture, Aricent, CTS, Geometric Software, Point Cross, Verizon,


What are enumerated types?

0 Answers  


write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?

1 Answers  


24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?

2 Answers  


What is a stream?

0 Answers  


Explain what is the difference between a free-standing and a hosted environment?

0 Answers  


Can we access the array using a pointer in c language?

0 Answers  


How can you determine the maximum value that a numeric variable can hold?

0 Answers  


what is the difference between i++ and ++i?

5 Answers  


Categories