Skip to the content.

Computer test

// 1234.txt contains 4 bytes, "1234".
#include <stdio.h>
int main() {
    int val;
    fread(&val, sizeof(val), 1, fopen("1234.txt", "rb"));
    return printf("%x", val);
}

Which of the following are probable outputs of the program on a machine released after year 2000?

(i) 1234 (ii) 4321 (iii) 31323334 (iv) 34333231