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

Mutltiple Printf with \n two times

#include <stdio.h>

int main() {

printf("__________");
return 0;

}
by

1 Answer

sam5epi0l
Add multiple \n like this:

#include <stdio.h>

int main() {

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

}

Login / Signup to Answer the Question.