what is the difference between normal variables and pointer
variables..............
Answer Posted / yshwanth
variable is an memory alocation were the value keps on
changing during the execution of the program
| Is This Answer Correct ? | 11 Yes | 7 No |
Post New Answer View All Answers
There seem to be a few missing operators ..
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
How do you redirect a standard stream?
how can I convert a string to a number?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Define C in your own Language.
Explain how can I right-justify a string?
Explain argument and its types.
How do you do dynamic memory allocation in C applications?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
find out largest elemant of diagonalmatrix
How can you tell whether a program was compiled using c versus c++?
Which header file is used for clrscr?
What is an arrays?
why do some people write if(0 == x) instead of if(x == 0)?