diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-05 05:14:28 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-05 05:14:28 +0000 |
commit | d1a1a5a9205d709874890a06c2197d7154a64b91 (patch) | |
tree | e3d737a4489325ab9c1cd45adae6c413bd26d41f | |
parent | 372310563f11e10d868d914b5c767ea1e1acf4d6 (diff) |
Mon, Dec 4, 2023, 9:14 PM -08:00
-rw-r--r-- | wk2/lect2/greet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk2/lect2/greet.c b/wk2/lect2/greet.c index eabff90..ccecd7d 100644 --- a/wk2/lect2/greet.c +++ b/wk2/lect2/greet.c @@ -3,7 +3,7 @@ //argc is argument count, ie how many arguments were given //argv is an array of the arguments given -//argv[0] is the +//argv[0] is the command that calls the script, ie ./greet int main(int argc, string argv[]) { printf("hello, %s\n", argv[1]); |