1. What is the output of this C code? #include <stdio.h> void main() { int a = 5, b = -7, c = 0, d; d = ++a && ++b || ++c; printf(”n%d%d%d%d”, a, b, c, d); } a) 6 -6 0 0 b) 6 -5 0 1 c) -6 -6 0 1 d) 6…
1. What is the output of this C code? #include <stdio.h> void main() { int a = 5, b = -7, c = 0, d; d = ++a && ++b || ++c; printf(”n%d%d%d%d”, a, b, c, d); } a) 6 -6 0 0 b) 6 -5 0 1 c) -6 -6 0 1 d) 6…