NEW
Font size
WorksheetsMindSpace Computers C Quiz-1 2025
Total questions: 13
Worksheet time: 12mins
#include<stdio.h> supports which of the following:
clrscr() and getch()
scanf() and printf()
#include<stdio.h> is?
Header File
Footer File
Identify the correct output statement:
printf("Addition = %d" ,add);
scanf("Addition = %d" ,add);
display("Addition = " ,add);
show("Addition = %d, "add);
Identify the correct input statement to input two int values:
printf("%d %d", &a, &b);
scanf("%d %d", &a, &b);
scanf("%d %d", a, b);
printf("%d %d", a, b);
What is C Language?
Programming Language
General Purpose Language
English Language
Algorithmic Language
Which data type can be use to represent value 19?
float
int
char
long
Which data type can be use to represent value 3.14?
float
int
char
long
Which of the following is correct Comment / Heading in C?
/* Program to calculate area *\
\* Program to calculate area *\
/* Program to calculate area */
/* Program to calculate area /*
Which of the following is input statement in C?
printf()
scanf()
clrscr()
input()
Which of the following is output statement in C?
printf()
scanf()
clrscr()
output()
What is full form of stdio.h?
Console Input Output Header File
Student Input Output Header File
Style Input Output Header File
Standard Input Output Header File
Which data type specifier is used for int?
%d
%f
%D
%i
Which data type specifier is used for float?
%F
%f
%i
%d
