Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
Created October 24, 2018 05:35
Show Gist options
  • Select an option

  • Save topherPedersen/bd3ffd04fe4a50589232d2d94e13c98f to your computer and use it in GitHub Desktop.

Select an option

Save topherPedersen/bd3ffd04fe4a50589232d2d94e13c98f to your computer and use it in GitHub Desktop.
Text-Based User Interface in C++
#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