Understanding C++/Interaction

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

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