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
When the macros gets expanded?
How do you override a defined macro?
What are the types of pointers in c?
What are header files and what are its uses in C programming?
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
How can I send mail from within a c program?
Which is the memory area not included in C program? give the reason
How do you define a function?
Write a code to generate a series where the next element is the sum of last k terms.
What is the difference between the expression “++a” and “a++”?
What is your stream meaning?
What is the deal on sprintf_s return value?
How to draw the flowchart for structure programs?
I came across some code that puts a (void) cast before each call to printf. Why?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }