From 0edc38a6d94cf9fd082b521d6ae7b1100c7f2f7a Mon Sep 17 00:00:00 2001 From: AnubhabSarkar180 Date: Tue, 29 Oct 2024 11:28:00 +0530 Subject: [PATCH] Hello world in C --- HelloWorld.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/HelloWorld.c b/HelloWorld.c index 3102ada..f968572 100644 --- a/HelloWorld.c +++ b/HelloWorld.c @@ -1,7 +1,7 @@ -#include - -int main(void) +#include +int main() { - printf("Hello, world!"); - return 0; -} + printf("Hello World!"); + + return 0; +} \ No newline at end of file