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

Level 7 > Lesson3

#include <stdio.h>

int main() {

int x, y;
x = 1;

for(y=2; xy<=50;y++) {
printf("%d x %d = %d\n",x, y,x
y);
x++;
___
}

getting error:- something went wrong in loop condition.
by

1 Answer

sonalvidu
#include <stdio.h>

int main() {
int x, y;
x = 1;

for (y = 2; x y <= 50; y++) {
printf("%d x %d = %d\n", x, y, x
y);
x++;
}

return 0;
}

Login / Signup to Answer the Question.