Answers for "displaying text 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

Browse Popular Code Answers by Language