diff options
Diffstat (limited to 'wk2/lect2/status.c')
-rw-r--r-- | wk2/lect2/status.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/wk2/lect2/status.c b/wk2/lect2/status.c deleted file mode 100644 index ebce04c..0000000 --- a/wk2/lect2/status.c +++ /dev/null @@ -1,16 +0,0 @@ -#include <stdio.h> -#include <cs50.h> - -int main(int argc, string argv[]) -{ - if (argc != 2) - { - printf("Missing command-line argument\n"); - return 1; - } - else - { - printf("hello, %s\n", argv[1]); - return 0; - } -} |