Assume that the following program is executed on a Little En…

Questions

Assume thаt the fоllоwing prоgrаm is executed on а Little Endian processor. Which option below best describes the output. #include int main(){    union a    {        short i;  //recall that short is 2 bytes.        char ch[2];    };    union a u;     u.ch[0]=121;    u.ch[1]=70;     printf("%dn", u.i);     u.i = 103;     printf("%d, %dn", u.ch[0], u.ch[1]);    return 0;}