From 1f310b02f32d9f23793214e83e1e974a0dc9356e Mon Sep 17 00:00:00 2001 From: Tiger16199620 <32063490+Tiger16199620@users.noreply.github.com> Date: Tue, 6 Oct 2020 00:11:25 +0530 Subject: [PATCH 1/2] update program remove comas for better clear vision of hello world --- Hello world | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hello world b/Hello world index 3b7617c..d9105a6 100644 --- a/Hello world +++ b/Hello world @@ -1,6 +1,6 @@ #include int main() { - printf("Hello, World!"); + printf("Hello World!"); return 0; } From 131bb1271b8aec2c11f53af2fa06b6716504c576 Mon Sep 17 00:00:00 2001 From: Tiger16199620 <32063490+Tiger16199620@users.noreply.github.com> Date: Tue, 6 Oct 2020 00:14:31 +0530 Subject: [PATCH 2/2] update program complete termination of prog --- frequency of a character | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frequency of a character b/frequency of a character index b5334ac..bfb979c 100644 --- a/frequency of a character +++ b/frequency of a character @@ -1,7 +1,7 @@ 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: ");