Answers for "print a paragraph in c++"

C++
1

how to print text on C++

#include <iostream>
using namespace std;

int main() {
  cout << "Hello World!";
  return 0;
}
Posted by: Guest on April-05-2021
0

how to print a text in c++

//typing using namespace std; before the int main will make things easier so that you 
//won't need to type std:: every time you code something.
// For example:

using namespace std;

int main()
{
	cout << "Hello World!";

}
Posted by: Guest on August-05-2021

Browse Popular Code Answers by Language