C Programming Multiple Choice Questions (MCQ) | IT Developer <?php echo $page_title; ?>
IT Developer

C Programming Multiple Choice Questions (MCQ)

C Programming Multiple Choice Questions (MCQ) - Set 15



Share with a Friend

Multiple Choice Questions


C Programming - Multiple Choice Questions (MCQ) - Set 15

71. What is the output?
 void main() 
 { 
      int x = 1, y = 2; 
      printf("%d", x, y); 
 } 
A). 1 2
B). 1
C). 2
D). Error
View Answer
Correct: B




72. MACRO is used to _______________.
A). Save memory
B). fast execution
C). Both a & b
D). none of above
View Answer
Correct: B




73. For 16-bit compiler allowable range for integer constants is
A). -3.4e38 to 3.4e38
B). -32767 to 32768
C). -32768 to 32767
D). -32668 to 32667
View Answer
Correct:




74. C Language developed at
A). AT & T's Bell Laboratories of USA in 1972
B). AT & T's Bell Laboratories of USA in 1970
C). Sun Microsystems in 1973
D). Cambridge University in 1972
View Answer
Correct: A




75. A C variable cannot start with
A). An alphabet
B). A number
C). A special symbol other than underscore
D). Both (b) and (c)
View Answer
Correct: D