From f23032b1720ba79c0ba4419f7825eaab155d8453 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 9 Apr 2024 09:11:04 -0400 Subject: [PATCH 1/2] Added comment for hello world --- c/helloworld.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/c/helloworld.c b/c/helloworld.c index 3bc057b..caf50f0 100644 --- a/c/helloworld.c +++ b/c/helloworld.c @@ -1,3 +1,5 @@ +/* Hello world example in c*/ + #include int main() { From 924bc3bad2ec32d6251634421f63d0f78a2551ae Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 9 Apr 2024 09:17:16 -0400 Subject: [PATCH 2/2] Added comment --- c/helloworld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/helloworld.c b/c/helloworld.c index caf50f0..0ed58f8 100644 --- a/c/helloworld.c +++ b/c/helloworld.c @@ -1,4 +1,4 @@ -/* Hello world example in c*/ +/* Hello world example comment in c*/ #include