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

Level1 Lesson 6 help

#include <stdio.h>

int main() {

printf("\n\nI\n\nlove\n\nC");
return 0;

}
by

2 Answers

sam5epi0l
You have used too many new line characters. Try this code:


#include <stdio.h>

int main() {

printf("I\nlove\nC");
return 0;

}
alisson
Thank you.

Login / Signup to Answer the Question.