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 |
Explain how can you determine the size of an allocated portion of memory?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What does s c mean in text?
write a program to convert a expression in polish notation (postfix) to inline (normal)
If we give two names then this displays the connection between the two people. It is nothing but flames game
What is the difference between null pointer and wild pointer?
What is an expression?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What are inbuilt functions in c?
What's the best way to declare and define global variables?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?