summaryrefslogtreecommitdiff
path: root/ask.c
diff options
context:
space:
mode:
Diffstat (limited to 'ask.c')
-rw-r--r--ask.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/ask.c b/ask.c
deleted file mode 100644
index 39a3910..0000000
--- a/ask.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdio.h>
-#include <cs50.h>
-
-int main(void)
-{
- string first = get_string("What's your first name? ");
- char middle = get_char("What's your middle INITIAL? ");
- string last = get_string("What's your last name? ");
- printf("Hello, %s %c %s\n", first, middle, last);
-}