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 variable in c example?
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 sizeof return c?
Explain what is wrong in this statement?
Can the sizeof operator be used to tell the size of an array passed to a function?
How are variables declared in c?
What is volatile, register definition in C
Why is c not oop?
What are different types of operators?
How can I trap or ignore keyboard interrupts like control-c?
How can I use a preprocessorif expression to ?
What are the features of the c language?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Why structure is used in c?
What is the explanation for cyclic nature of data types in c?