#include <iostream>
using namespace std;
int main()
{
cout << "[Enter Text Here]" << endl;
return 0;
}
int age;
cout << "How old are you ?" << endl;
cin >> age;
cout << "Your text";
//or
cout << "Your text" << endl;
//or
int x = 5;
cout << "x = " << x << endl;
//or
cout << "x = " << x;
Code Example |
---|
Cpp :: c++ program transpose of matrix |
Cpp :: count number of set bits C++ |
Cpp :: increment c++ |
Cpp :: c vs c++ |
Cpp :: c++ reference |
Cpp :: vector reverse function in c++ |
Cpp :: binary representation c++ |
Cpp :: read and write file in c++ |
Cpp :: size of stack in c++ |
Cpp :: how to find 2d vector length cpp |
Cpp :: lutris |
Cpp :: c++ string to char array |
Cpp :: convert unsigned long to string c++ |
Cpp :: cudamemcpy |
Cpp :: c++ string size |
Cpp :: c++ modulo positive |
Cpp :: what is a template in c++ |
Cpp :: ascii conversion cpp |
Cpp :: c++ hashmaps |
Cpp :: json::iterator c++ |
Cpp :: c++ struct constructor |
Cpp :: how to calculate bitwise xor c++ |
Cpp :: how many months have 31 days |
Cpp :: c++ program to convert kelvin to fahrenheit |
Cpp :: c++ initialize static variable |
Cpp :: c++ finding gcd |
Cpp :: for loop in cpp |
Cpp :: C++ Integer Input/Output |
Cpp :: c++ print |
Cpp :: c++ variable types |