This Is About C++! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

This Is About C++!

I Was Doing 2 Text Of C++ Code But After Print Two Text They Stick In Like This #include <iostream> using namespace std; int main() { cout << "Hello world!" << endl; cout << "I am Introducing Again Now Its On C++" << endl; cout << "Enjoy!" << endl; cout << "Name: Sebastian" << endl; return 0; } Result Hello World! I am Introducing Again Now Its On C++ Enjoy! Name: Sebastian Thats Wrong What I Want Is Hello World! I am Introducing Again Now Its On C++ Enjoy! Name: Sebastian Please Help Me! Direct Code Link: https://code.sololearn.com/cwURJ2zTLh33/?ref=app

24th Jul 2020, 4:40 AM
Catafrancia Mapper
Catafrancia Mapper - avatar
1 Answer
+ 1
#include <iostream> using namespace std; int main() { cout << "Hello world!\n" << endl; cout << "I am Introducing Again Now Its On C++\n" << endl; cout << "Enjoy!\n" << endl; cout << "Name: Sebastian\n" << endl; return 0; }
24th Jul 2020, 5:23 AM
Vadivelan