NEW
Font size
WorksheetsProgramming concepts in c - Quizizz-III
Total questions: 20
Worksheet time: 40mins
Who developed the C language?
Ken Thompson
Bjarne Stroustrup
Dennis Ritchie
Kernighan
C program should be written in
Upper case
Title case
Sentense case
lower case
Every statement in a C program should end with a -----
Colon(:)
semicolon(;)
comma(,)
fullstop(.)
else is a ----------------------------------------------
digit
identifier
keyword
datatype
The symbol of a new line character is ---------------
\n
\t
\d
\f
The Unary operator is ------------
>>
++ and --
==
??
---------------- statement should be the last statement in each case in switch() statement
break()
default()
goto
until
%f specifies ---------------- data type
float
int
char
string
Do not use ‘&’ symbol in ---------------------- output function
getch()
continue()
printf()
jump()
switch() statement should have at most -------------- label
case
default
continue
break
Switch statement is a -----------------------------
multi-way decision
one-way-decision
two-way decision
above all
Commonly used input function is ----------
scanf()
printf()
total()
goto()
In switch() statement, the case labels must end with -------
colon(:)
semicolon(;)
fullstop(.)
none
while() loop is a ---------------------------- control loop
entry
exit
both
middle
---------- loop performs the test at the bottom of the loop
do-while
while
goto
continue
The keyword of the external variable is --------
auto
memory
extern
else
Every C program must contain at least one function named as --------------
main()
continue()
jump()
goto()
The parameter list in main function represent ---- parameter
formal parameter
argument list
actual parameter
parameter list
The function name and the parameter list together constitute the ---------------
function signature
main function
input function
output function
------------------ function copies a string to another
strcpy()
strcat()
strcmp()
strlen()
