how to cout in c plus plus code example

Example 1: cout value c++

#include <iostream>

using namespace std;

int main()
{
	int a,b;
	char str[] = "Hello Programmers";
	
	/* Single insertion operator */
	cout << "Enter 2 numbers - ";
	cin >> a >> b;
	cout << str;
	cout << endl;
	
	/* Multiple insertion operator */
	cout << "Value of a is " << a << endl << "Value of b is " << b;
	
	return 0;
}

Example 2: c++ output

#include <iostream>

int main(){
  std::cout << "Hello World!" << std::endl; // prints "Hello World"
}

Tags:

Cpp Example