int main() {
if (/*your code goes here*/) {
printf("hello");
} else {
printf("world");
}
return 0;
}
Try printing "helloworld" by just filling in the condition in the if statement ?
Hint:
Ever wondered what printf returns? ;)
int main() {
if (/*your code goes here*/) {
printf("hello");
} else {
printf("world");
}
return 0;
}