difference between ordinary variable and pointer in C?
Answers were Sorted based on User's Feedback
Answer / guest
ordinary variable holds value and pointer variable holds
the address
| Is This Answer Correct ? | 21 Yes | 1 No |
Answer / syed
an ordinary variable is like a container it can hold any
value and we can change the value of ordinary variable at
time throughout the program.
a pointer is a variable that stores the address of another
variable ..
| Is This Answer Correct ? | 13 Yes | 2 No |
what is the difference between structural,object based,object orientd programming languages?
What does s c mean in text?
Explain the Difference between the New and Malloc keyword.
What would be an example of a structure analogous to structure c?
what is pointer
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
What is the difference between call by value and call by reference in c?
How to write a C program to determine the smallest among three nos using conditional operator?
How can I make it pause before closing the program output window?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
If input is 123 then how to print 100 and 20 and 3 seperately?
Write a program to check prime number in c programming?