aboutsummaryrefslogtreecommitdiff
path: root/hello.c
diff options
context:
space:
mode:
authorrayi512x <[email protected]>2026-09-20 17:44:21 +0700
committerrayi512x <[email protected]>2026-09-20 17:44:21 +0700
commitd843e891a7526862c10e77549f3d88048022dae6 (patch)
tree4d79cfadea403fd960a5aba870c3e9af2f2b3aa2 /hello.c
parent195adf6e4664b2e7c15336e6904637325df9ab3c (diff)
Accept parametersHEADmaster
Diffstat (limited to 'hello.c')
-rw-r--r--hello.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hello.c b/hello.c
index f65fc66..67fc992 100644
--- a/hello.c
+++ b/hello.c
@@ -1,6 +1,6 @@
#include <stdio.h>
-int main(void) {
+int main(int argc, char* argv[]) {
printf("Hello, world!\n");
return 0;
}