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
What are the differences between new and malloc in C?
What are the different categories of functions in c?
Can a void pointer point to a function?
Do you know the difference between exit() and _exit() function in c?
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
Where static variables are stored in c?
What are c header files?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is a wrapper function in c?
What is the importance of c in your views?
What are unions in c?
#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); }
What is a rvalue?
What is "Hungarian Notation"?
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.