C Multiple Choice Questions and Answers - 2

Question: 6

C contains which of the following two special pointer operators?

(A) % and &

(B) & and &&

(C) *and &&

(D) * and &

Ans: D

* and &

Question: 7

The header file `setjmp.h’ can be used for providing

(A) Character type identification and translation

(B) Support for string handling functions

(C) Diagnostic and debugging assistance

(D) Links to assembly language for calls

Ans: D

Links to assembly language for calls

Question: 8

The general form of do while statements is

(A) Do while expression

(B) Do statement while (expression);

(C) Do statement while statement

(D) Do expression while statement

Ans: B

Do statement while (expression);

Question: 9

A library files that come with C are

(A) Program examples

(B) Files that contain function which carry out various commonly used operations and calculations

(C) The compiler and liner

(D) Text editor for program development

Ans: B

Files that contain function which carry out various commonly used operations and calculations

Question: 10

The math library is set up for the user by the file

(A) Time .h

(B) Math .h

(C) Limits .h

(D) Float .h

Ans: B

Math .h

Related Questions