C++ COURSE

C++ Output

Learn C++ programming with EDUHUB Code Hub.

C++ Output

The cout object is used to display output on the screen.



#include <iostream>

using namespace std;


int main()
{

cout << "Welcome to EDUHUB";

return 0;

}

Output

Welcome to EDUHUB