Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

hello world in c++

#include <iostream>


// Anything in the main function will get executed even without calling it.
int main(){
  	// The function cout in the STD or Standard Library will print out stuff to the console.
	std::cout <<"Hello world.";
}
Source by code.visualstudio.com #
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
2+1 =