NEW
Font size
WorksheetsKVN naik Quizz 1
Total questions: 20
Worksheet time: 7mins
Who developed the C programming language?
James Gosling
Dennis Ritchie
Which symbol is used to end a statement in C?
What is the correct file extension for a C program?
Which function is the entry point of a C program?
Which header file is required for printf()?
stdlib.h
stdio.h
math.h
conio.h
What is the purpose of the 'return' statement in a C function?
To print output
To exit the program
To return a value to the caller
To declare a variable
What is the size of an 'int' data type in C on most systems?
2 bytes
8 bytes
1 byte
4 bytes
Which data type is used to store a single character?
Which keyword is used to declare a constant in C?
Which operator is used for logical AND?
What is the index of the first element in an array?
Which loop executes at least once?
Which operator is used to get the address of a variable?
Which function is used to allocate memory dynamically?
Which keyword is used to exit from a loop?
What is the return type of main() function?
Which symbol is used for single-line comments?
Which data type has the largest size?
Which keyword is used to define a structure?
Which operator is used to access the value pointed by a pointer?
