Menu
×
×
Correct!
Exercise:Print "Hello World" if
int x = 50;
int y = 50;
if (x == y) {
printf("Hello World");
}
Not CorrectClick here to try again. Correct!Next ❯int x = 50; int y = 50;(x y) { printf("Hello World"); } |