difference between ordinary variable and pointer in C?
Answer Posted / 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 |
Post New Answer View All Answers
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Where are c variables stored in memory?
Why should I prototype a function?
What is a buffer in c?
writ a program to compare using strcmp VIVA and viva with its output.
What is a char c?
What is structure pointer in c?
Why array is used in c?
Explain union. What are its advantages?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What are dangling pointers in c?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What math functions are available for integers? For floating point?
Do you know the purpose of 'register' keyword?