Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

cpp starting code


	// A hello world program in C++

	#include<iostream>
	using namespace std;

	int main()
	{
		cout << "Hello World!";
		return 0;
	}

Source by www.codingunit.com #
 
PREVIOUS NEXT
Tagged: #cpp #starting #code
ADD COMMENT
Topic
Name
2+8 =