Multiple Choice
Int Main() {
Int _ = 10;
Int __ = 20;
Int ___ = _ + __;
Printf("__%D",___) ;
Return 0;
}
A) Compilation Error
B) Runtime Error
C) __0
D) __30
Correct Answer:

Verified
Correct Answer:
Verified
Q6: Printf() Belongs To Which Library Of C<br>A)Stdlib.H<br>B)Stdio.H<br>C)Stdout.H<br>D)Stdoutput.H
Q7: How many times C.com is printed?<br>Int main()<br>{<br>Int
Q8: What is output of below program?<br>Int main()<br>{<br>Int
Q9: What Should Be The Output:<br>Int Main()<br>{<br>Int A
Q10: int main() {<br>Int x;x=10,20,30;<br>Printf("%d",x);<br>Return 0;<br>}<br>A)10<br>B)20<br>C)30<br>D)Compilation Error
Q12: The Compiler In C Ignores All Text
Q13: How many times C.com is printed?<br>Int main()<br>{<br>Int
Q14: Int Main() {<br>Extern Int I;<br>I = 20;<br>Printf("%D",
Q15: How many times C.com is printed?<br>Int main()<br>{<br>Int
Q16: Total Number Of Keywords In C Are<br>A)30<br>B)12<br>C)34<br>D)32