Copyright © EngineeringMCQ.com
31. printf("%d",sizeof(int)); Output is:
Correct answer: (B)
2
32. C program starts executing from:
Correct answer: (A)
main()
33. Which is the incorrect statement:
Correct answer: (B)
Variable name may start from digit.
34. Uninitialized variable may have:
Correct answer: (A)
Garbage value.
35. Which is the correct variable name:
Correct answer: (C)
character
36. Which is not the c keyword:
Correct answer: (D)
local
37. Which operator is used to assign value to variables:
Correct answer: (A)
=
38. '\n' used for
Correct answer: (B)
New line
39. printf("%u",&a); The output of this statement is:
Correct answer: (B)
Address of a
40. String is:
Correct answer: (B)
Array of characters