Created
October 24, 2018 05:35
-
-
Save topherPedersen/bd3ffd04fe4a50589232d2d94e13c98f to your computer and use it in GitHub Desktop.
Text-Based User Interface in C++
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> | |
| #include <string> | |
| using namespace std; | |
| int main() { | |
| printf("Hello, what is your name? "); | |
| string name; | |
| cin >> name; | |
| printf("Nice to meet you %s", name.c_str()); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment