Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 4 lesson 9

Help
by

1 Answer

sam5epi0l
I hope the solution given below helps:


#include <stdio.h>

int main() {

int x, y, z;
y = 10;
z = 99;

x = (z/(y+1))*11;

printf("Value of x is %d", x);

return 0;
}

Login / Signup to Answer the Question.