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
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
How to write a code for reverse of string without using string functions?
Why do we use main function?
explain what is fifo?
Explain what is the difference between functions abs() and fabs()?
What is the best style for code layout in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Which one would you prefer - a macro or a function?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
How do you sort filenames in a directory?
Why we use void main in c?
Is null equal to 0 in sql?
What are the basic data types associated with c?
What is data structure in c language?
What is static function in c?