commit 09e9df3e62e7f4867efff7b3ab9a2c25dbae83b3 parent 392babedff707a748071e66337c8fdd70454973f Author: Amit Dutta <amitdutta4255@gmail.com> Date: Fri, 5 Sep 2025 18:36:43 +0530 Create hello.c Diffstat:
| A | c/hello.c | | | 4 | ++++ |
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/c/hello.c b/c/hello.c @@ -0,0 +1,4 @@ +#include<stdio.h> +void main() { + printf("Hello world!"); +}