summaryrefslogtreecommitdiff
path: root/wk2/lect2/greet.c
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-05 05:14:28 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-05 05:14:28 +0000
commitd1a1a5a9205d709874890a06c2197d7154a64b91 (patch)
treee3d737a4489325ab9c1cd45adae6c413bd26d41f /wk2/lect2/greet.c
parent372310563f11e10d868d914b5c767ea1e1acf4d6 (diff)
Mon, Dec 4, 2023, 9:14 PM -08:00
Diffstat (limited to 'wk2/lect2/greet.c')
-rw-r--r--wk2/lect2/greet.c2
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]);