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 |
Why doesnt that code work?
What is the stack in c?
How we can set and clear bit in a byte using macro function?
a simple program in c language
Is it possible to execute code even after the program exits the main() function?
Can the sizeof operator be used to tell the size of an array passed to a function?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
How would you sort a linked list?
What are void pointers in c?
How can I find the modification date of a file?
What is string length in c?