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 are examples of structures?
How is pointer initialized in c?
If you know then define #pragma?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What does %2f mean in c?
Explain bit masking in c?
What is the use of header?
Why is a semicolon (;) put at the end of every program statement?
How can you determine the maximum value that a numeric variable can hold?
Explain about the functions strcat() and strcmp()?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What are the different types of objects used in c?
What is the explanation for the dangling pointer in c?
What is echo in c programming?