Skip to content

Instantly share code, notes, and snippets.

@hindol
Created May 15, 2012 14:58
Show Gist options
  • Save hindol/2702407 to your computer and use it in GitHub Desktop.
Save hindol/2702407 to your computer and use it in GitHub Desktop.
Hello world in C++
#include <iostream>
#include <string>
int main(int argc, char* argv[])
{
string name;
std::cin >> name;
std::cout << "Hello " << name << "!" << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment