I just have this simple Hello world program that I would like to run in terminal.
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
And when I run the output file in the terminal. It prints like this. enter image description here
Is there anyway to have the output come out on a new line instead. So it's more like:
*Hello World!
*new terminal line
Thanks in advance.