c++ user input string 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: how to get input from the console in c++

int age;
cin >> age;

Example 3: input a string in c++

string fullName;
cout << "Type your full name: ";
getline (cin, fullName);
cout << "Your name is: " << fullName;

Tags:

Php Example