Answers for "c++ starter"

C++
2

c++ starter

// A hello world program in C++

	#include<iostream>
	using namespace std;

	int main()
	{
		cout << "Hello World!";
		return 0;
	}
Posted by: Guest on November-19-2020
0

c++ starter

#include <cstdio>
#include <iostream>

int main(int argc, char *argv[])
{
	std::cout << "Hello World!" << std::endl;
	return 0;
}
Posted by: Guest on October-29-2021

Browse Popular Code Answers by Language