What will be the output of the following program on GCC?
![]()
Practice Bitwise Operators –
What will be the output of the following program on GCC?
include <stdio.h>
int main() {
int x;
x =-3 + 4 - 7 * 8 / 5 % 10;
printf("x=%d
",x);
return 0;
}