โช Choose the correct option.
What is the output of the following program on GCC compiler?
int main() {
union s{
int i;
char ch[2];
};
union s u;
u.i=256;
printf("%d, %d, %u ", u.i, u.ch[0], u.ch[1]);
return 0;
}