Basics of C Language
This Test will cover the basic concepts of C Langauge, including basic syntax, Operators, Variables, Data types etc.
Q.1 __________ is a collection of built-in functions that can be used directly in C programs?
View Ans
C. header file
Q.2 Which of the following function reads a character (only one at a time) from the terminal and return it as an integer?
Q.3 Which of the following statement is true according to C syntax rule?
Q.4 Which of the following is not a valid keyword in C language?
Q.5 The first character of an identifier in C langauge can contain?
Q.6 Which operator in C is used to return the size of a variable?
Q.8 Which data type is used to store real numbers in C language?
#include<stdio.h>
int main()
{
void v = 0;
printf("%d", v);
return 0;
}
Q.10 Which of the following is not a logical operator?
No comments:
Post a Comment