Answers for "output of c++"

C++
1

c++ print

cout << "hello world"
Posted by: Guest on October-08-2020
0

c++ output

#include <iostream>

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

Browse Popular Code Answers by Language