Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

hello world

#include<bits/stdc++.h>
//you can also use using namespace std;
int main()
{
	std::cout<<"hello world";  //this is a single line comment 
	return 0; /*used to end the main function */ /* this is an multi ine comment */
}
Source by www.codegrepper.com #
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
6+3 =