Answers for "cin cout c++"

C++
3

C++ cin cout

int age;
cout << "How old are you ?" << endl;
cin >> age;
Posted by: Guest on May-29-2020
0

cout c++

// It prints output on the screen
std::cout << "C++ Programming" << endl;
Posted by: Guest on August-17-2021
0

c++ cout int

#include <iostream>

std::cout << "Hello, World!" << std::endl;
Posted by: Guest on June-30-2020

Browse Popular Code Answers by Language