what is the difference between normal variables and pointer
variables..............
Answer Posted / abdinadir mohamed abdulle
"Pointer variable holds memory address or physical address
of any variable value means it indirectly points any
vaiable,we can perform all operations +,*,-,and / through
it but normal variable directly points vaiable value"
Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What are the disadvantages of c language?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Is it fine to write void main () or main () in c?
What is getch?
What is the use of volatile?
how should functions be apportioned among source files?
What are the back slash character constants or escape sequence charactersavailable in c?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Can we compile a program without main() function?
Is c a great language, or what?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Is that possible to store 32768 in an int data type variable?
Can include files be nested? How many levels deep can include files be nested?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is dynamic memory allocation?