Open In App

ISRO | ISRO CS 2018 | Question 60

Like Article
Like
Save
Share
Report

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


Last Updated : 10 Jul, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads