cout in cpp code example
Example 1: cout value c++
#include <iostream>
using namespace std;
int main()
{
int a,b;
char str[] = "Hello Programmers";
cout << "Enter 2 numbers - ";
cin >> a >> b;
cout << str;
cout << endl;
cout << "Value of a is " << a << endl << "Value of b is " << b;
return 0;
}
Example 2: std cout c++
#include <iostream>
using std::cout;
int main()
{
cout<<"Hello world";
return 0;
}
Example 3: how to cout in c++
std::cout << "Hello World!" << std::endl;
std::cout << "Hello World!" <<;