diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-03 05:51:36 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-03 05:51:36 +0000 |
commit | 6a10c33f6e59de7f02fd6c12bce308d3150c5eeb (patch) | |
tree | c558b480b37a5ae3f648eb4346115ed079678329 /wk1/ask.c | |
parent | 2e86106732db92667bd8a64e3f98c1b6e8df86a5 (diff) |
Sat, Dec 2, 2023, 9:51 PM -08:00
Diffstat (limited to 'wk1/ask.c')
-rw-r--r-- | wk1/ask.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/wk1/ask.c b/wk1/ask.c deleted file mode 100644 index 39a3910..0000000 --- a/wk1/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); -} |