Created
July 15, 2013 20:25
-
-
Save ZackMattor/6003124 to your computer and use it in GitHub Desktop.
C++ Intro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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