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

Answer Posted / supriya basak

Normal variable is a variable which can hold a value as like
eg. int,float or char,it may be signed or unsigned and take
different memory space as per as their data type.But the
pointer variable is a variable which hold the address of a
another variable,and it is obviously unsigned and take
always 2 byte in memory space.

Is This Answer Correct ?    88 Yes 23 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When the macros gets expanded?

1426


How do you override a defined macro?

1273


What are the types of pointers in c?

1029


What are header files and what are its uses in C programming?

1242


exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above

1125


How can I send mail from within a c program?

1034


Which is the memory area not included in C program? give the reason

1949


How do you define a function?

1031


Write a code to generate a series where the next element is the sum of last k terms.

1229


What is the difference between the expression “++a” and “a++”?

1234


What is your stream meaning?

1241


What is the deal on sprintf_s return value?

1138


How to draw the flowchart for structure programs?

9345


I came across some code that puts a (void) cast before each call to printf. Why?

1220


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

1301