Jump to content

Understanding C++/Interaction

From Wikibooks, open books for an open world
#include <iostream>
using namespace std;

int main()
{
	cout << "hello";
	return 0;
}