Problem Statement
What will be the output of the program given below? Assume a little-endian machine with a 4-byte int and a signed char . #include <stdio.h> static int a = 1234; int main() { char *ptr = (char *)&a; printf("%d ", ++*ptr++); *ptr = 5; printf(" %d ", --*ptr--); *ptr++; printf("%d ", *ptr++ + a); printf(" %d ", a++); return 0; } Pick ONE option -42 5 1120 1220 -34 6 1134 1240 -48 3 1112 1320 -45 4 1239 1235 Output Format Print the text of the correct option exactly as it appears above.