From ff52106acadc18c2b34dfc9cb83ef5fbbb16d7a5 Mon Sep 17 00:00:00 2001 From: Shree Gillorkar <70030205+Shree-Gillorkar@users.noreply.github.com> Date: Wed, 5 May 2021 23:06:23 +0530 Subject: [PATCH] Update main.c You can also write Hello World Program without ; --- HelloWorld/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/HelloWorld/main.c b/HelloWorld/main.c index b6174b5..cb6dbc6 100644 --- a/HelloWorld/main.c +++ b/HelloWorld/main.c @@ -8,5 +8,7 @@ */ int main(void){ printf("Hello, World!\n"); + /* Without using ; -> + if(printf("Hello, World!\n")){} */ return 0; }