Answers for "output in c++"

C++
0

c++ output

#include <iostream>

int main(){
  std::cout << "Hello World!" << std::endl; // prints "Hello World"
}
Posted by: Guest on October-07-2020
2

get data from terminal c++

int i;
  cout << "Please enter an integer value: ";
  cin >> i;
Posted by: Guest on June-17-2020

Browse Popular Code Answers by Language