ISRO | ISRO CS 2018 | Question 60
Consider the following program
main() { int x = 1; printf ("%d", (*char(char *)&x)) ; }
Assuming required header files are included and if the machine in which this program is executed is little-endian, then the output will be
(A) 0
(B) 99999999
(C) 1
(D) unpredictable
Answer: (D)
Explanation:
Quiz of this Question
Please Login to comment...