From 12fb9a15f4facc4284aa931de3c3755f4a38f40e Mon Sep 17 00:00:00 2001 From: Kishan Lal <72204965+Kishan5406@users.noreply.github.com> Date: Thu, 1 Oct 2020 21:53:35 +0530 Subject: [PATCH] Update and rename ASCII_code.c to ASCII_Code.c --- ASCII_code.c => ASCII_Code.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename ASCII_code.c => ASCII_Code.c (76%) diff --git a/ASCII_code.c b/ASCII_Code.c similarity index 76% rename from ASCII_code.c rename to ASCII_Code.c index 38f9620..6d391ee 100644 --- a/ASCII_code.c +++ b/ASCII_Code.c @@ -7,6 +7,6 @@ int main(void) printf("c in ASCII is %d\n", c); printf("c the character %c\n", c); printf("Three consecutive chars are : %c %c %c\n", c, c + 1, c + 2); - printf("Three bell rings chars are : %c%c%c\n", 'a', '\a', '\a'); + printf("Three bell rings chars are : %c %c %c\n", 'a', '\a', '\a'); return 0; -} \ No newline at end of file +}