Explain what is the difference between declaring a variable and defining a variable?
Answer Posted / ss
Declaring variable means
Eg- int a;
Defining variable means we are giving some integer value to that a variable
Eg- a=100;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of main() function?
How a string is stored in c?
show how link list can be used to repersent the following polynomial i) 5x+2
What is the purpose of main( ) in c language?
How can I make it pause before closing the program output window?
What is the use of function overloading in C?
What does 1f stand for?
What is main () in c language?
How to define structures? ·
How will you delete a node in DLL?
Are the expressions * ptr ++ and ++ * ptr same?
What is the purpose of realloc()?
Write a program for finding factorial of a number.
What is the difference between fread buffer() and fwrite buffer()?
explain what are pointers?