From 7c27d458bf4ba6419cdce93131ffdfa68a0de3e9 Mon Sep 17 00:00:00 2001 From: DivyaJana522 <68276934+DivyaJana522@users.noreply.github.com> Date: Mon, 5 Oct 2020 14:05:31 +0530 Subject: [PATCH 1/2] Updated hello world --- Hello world | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hello world b/Hello world index 3b7617c..d68003b 100644 --- a/Hello world +++ b/Hello world @@ -1,6 +1,6 @@ -#include +#include int main() { - printf("Hello, World!"); + printf("Hello World!"); return 0; } From 910394aeb0dfffe1e578ccbcfcc11edda14001d1 Mon Sep 17 00:00:00 2001 From: DivyaJana522 <68276934+DivyaJana522@users.noreply.github.com> Date: Mon, 5 Oct 2020 14:12:16 +0530 Subject: [PATCH 2/2] updated updated --- frequency of a character | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frequency of a character b/frequency of a character index b5334ac..ad51eba 100644 --- a/frequency of a character +++ b/frequency of a character @@ -1,7 +1,8 @@ +#include int main() { - char str[1000], ch - int i, frequency = 0 + char str[1000], ch; + int i, frequency = 0; print("Enter a string: "); gets(str); printf("Enter a character to find the frequency: ");