1. Is C Object-Oriented Language?
Ans. No, C is a Procedural Language.
2. What are the storage classes in C?
Ans. auto, register, static, extern
3. Who is the father of the C language?
Ans Dennis Ritchie
4. What are the data types supported by the C language?
Ans. char, int, float, double
5. What is the variable?
Ans. Variable is used to store data for later use.
6. What is constant in C?
Ans. Constant is like variable except for its value never changed during the execution of the program.
7. What are the keywords in C?
Ans. Keywords have a specific meaning in C and it can not be used as a variable name.
8. What are the C operators?
Ans C operators are used to perform mathematical operations.
9. List Operators in C.
Ans. +, -, *, /, %
10. What is the NULL pointer in C?
Ans. The pointer that doesn't refer to any address of value but NULL is known as a NULL pointer.
11. How many types of loops are used therein C?
Ans. While loop
For loop
Do-While loop
Nested loop
12. What is Void?
Ans. Void is the datatype that has no value.
Ans. No, C is a Procedural Language.
2. What are the storage classes in C?
Ans. auto, register, static, extern
3. Who is the father of the C language?
Ans Dennis Ritchie
4. What are the data types supported by the C language?
Ans. char, int, float, double
5. What is the variable?
Ans. Variable is used to store data for later use.
6. What is constant in C?
Ans. Constant is like variable except for its value never changed during the execution of the program.
7. What are the keywords in C?
Ans. Keywords have a specific meaning in C and it can not be used as a variable name.
8. What are the C operators?
Ans C operators are used to perform mathematical operations.
9. List Operators in C.
Ans. +, -, *, /, %
10. What is the NULL pointer in C?
Ans. The pointer that doesn't refer to any address of value but NULL is known as a NULL pointer.
11. How many types of loops are used therein C?
Ans. While loop
For loop
Do-While loop
Nested loop
12. What is Void?
Ans. Void is the datatype that has no value.