Vidyalelo
C Programming · all questions

C Fundamentals
practice.

Practice every MCQ with options. Use Show answers when you want the correct option and solution.

303

Questions

2/16

Page

Pick an option on a question to see the right answer and solution.

Which data type is used to store a sequence of characters in C?

Select an option to see the answer and solution.

In C, which operator is used for pointer-to-pointer relationships?

Select an option to see the answer and solution.

What is the purpose of the 'sizeof' operator in C?

Select an option to see the answer and solution.

What does the 'NULL' keyword represent in C?

Select an option to see the answer and solution.

Which library function is used to allocate memory dynamically in C?

Select an option to see the answer and solution.

What is the purpose of the 'scanf' function in C?

Select an option to see the answer and solution.

Which operator is used to access the value stored at a pointer address in C?

Select an option to see the answer and solution.

What is the purpose of the 'goto' statement in C?

Select an option to see the answer and solution.

Which header file is used for mathematical functions in C?

Select an option to see the answer and solution.

What is the significance of the 'volatile' keyword in C?

Select an option to see the answer and solution.

Who is father of C Language?

Select an option to see the answer and solution.

C Language developed at _________?

Select an option to see the answer and solution.

For 16-bit compiler allowable range for integer constants is ________?

Select an option to see the answer and solution.

C programs are converted into machine language with the help of

Select an option to see the answer and solution.

C was primarily developed as

Select an option to see the answer and solution.

Standard ANSI C recognizes ______ number of keywords?

Select an option to see the answer and solution.

Which one of the following is not a reserved keyword for C?

Select an option to see the answer and solution.

A C variable cannot start with

Select an option to see the answer and solution.

Which one of the following is not a valid identifier?

Select an option to see the answer and solution.

What will be printed after execution of the following program code?
main()
{
      printf("\\nab"); 
      printf("\\bsi"); 
      printf("\\rha"); 
}

Select an option to see the answer and solution.