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 are global variables and explain how do you declare them?
What is the difference between procedural and functional programming?
can any one provide me the notes of data structure for ignou cs-62 paper
What is data types?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
Why enum is used in c?
What is binary tree in c?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
How can we see the Expanded source code and compiled code for our source program in C?
What is a union?
What are the different types of storage classes in C?
What is const and volatile in c?