Skip to content

Instantly share code, notes, and snippets.

@ZackMattor
Created July 15, 2013 20:25
Show Gist options
  • Select an option

  • Save ZackMattor/6003124 to your computer and use it in GitHub Desktop.

Select an option

Save ZackMattor/6003124 to your computer and use it in GitHub Desktop.
C++ Intro
#include <iostream>
using namespace std;
int main() {
char name[15];
cout << "Please enter your name";
cin >> name;
cout << "Hello " << name << " , hope you're having fun!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment