Recent changes Random page
GAMING
more wikis
 
Gaming
Entertainment
Hobbies
Sports
Biggest wikis
see all...
See more...

C plus plus

From Code Snippets Wiki

Jump to: navigation, search
 

[edit] C++ Code Snippets

[edit] Hello World

#include <iostream>
 
int main(int argc, char** argv) {
  std::cout << "Hello World" << std::endl;
  return 0;
}
Rate this article:
Share this article: