From 6504c84b10710edefbebd601cd9cd1486e06cd7e Mon Sep 17 00:00:00 2001 From: mohammed Date: Thu, 1 Oct 2020 05:06:32 -0400 Subject: [PATCH] Added program file --- README | 1 + program.c | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 program.c diff --git a/README b/README index ce0acd6..b3904c4 100644 --- a/README +++ b/README @@ -4,3 +4,4 @@ int main() printf("hello world"); return 0; } +// Add this code to program.c file diff --git a/program.c b/program.c new file mode 100644 index 0000000..ce0acd6 --- /dev/null +++ b/program.c @@ -0,0 +1,6 @@ +#include +int main() +{ +printf("hello world"); +return 0; +}