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 |
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
What is the difference between fread and fwrite function?
write a program for the normal snake games find in most of the mobiles.
how to use enum datatype?Please explain me?
What is structure padding & expalain wid example what is bit wise structure?
What are the different properties of variable number of arguments?
Difference between fopen() and open()?
what will be maximum number of comparisons when number of elements are given?
What is FIFO?
Is there any demerits of using pointer?
What is omp_num_threads?
What is the difference between typeof(foo) and myFoo.GetType()?