Skip to content
This repository was archived by the owner on May 27, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ASCII_code.c → ASCII_Code.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}