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 / vignesh1988i

NORMAL VARIABLES POINTER VARIABLES

it holds a data it holds the address
of variable
another data when we
we make it to point

it can be directly referred data can be referred as *
by it's variable name

normal variables don't have data it has full data security
security




thank u

Is This Answer Correct ?    37 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the differences between new and malloc in C?

1205


What are the different categories of functions in c?

1175


Can a void pointer point to a function?

1072


Do you know the difference between exit() and _exit() function in c?

1107


The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none

1305


Where static variables are stored in c?

1165


What are c header files?

1030


Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop

2203


What is a wrapper function in c?

1166


What is the importance of c in your views?

1230


What are unions in c?

1083


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

1097


What is a rvalue?

1257


What is "Hungarian Notation"?

1165


 write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare.  You will then tabulate this information in another file.

2283