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
What is the use of header files?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
Is main is user defined function?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
formula to convert 2500mmh2o into m3/hr
What is the difference between null pointer and wild pointer?
How many levels deep can include files be nested?
Write a program to print factorial of given number without using recursion?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is New modifiers?
How can I find out the size of a file, prior to reading it in?
Differentiate between new and malloc(), delete and free() ?
Explain what math functions are available for integers? For floating point?
What is the use of in c?
Write a program of advanced Fibonacci series.