C | Data Types | Question 8
#include <stdio.h> int main() { if ( sizeof ( int ) > -1) printf ( "Yes" ); else printf ( "No" ); return 0; } |
(A) Yes
(B) No
(C) Compiler Error
(D) Runtime Error
Answer: (B)
Explanation: In C, when an integer value is compared with an unsigned it, the int is promoted to unsigned. Negative numbers are stored in 2’s complement form and unsigned value of the 2’s complement form is much higher than the sizeof int.
Quiz of this Question
Please Login to comment...