Answers for "cpp hello world class"

C++
1

c++ hello world

// C++ Hello World program
#include <iostream>

int main() {
    std::cout << "Hello World!";
    return 0;
}
Posted by: Guest on August-20-2021
0

C++ hello world

#include <iostream>
using namespace std;
int main(){

cout<<"hello world";
	return 0;
}
Posted by: Guest on May-22-2021

Browse Popular Code Answers by Language