Question 11
Consider the below C program.
#include <stdio.h>
int main() { int x = 5; int y = 3; int z = 2; int result = x + y * z - x / z; printf("%d\n", result); return 0;}What will be the output of the above program?
5
5.5
9
9.5