ascii
// ASCII => American Standard Code for Information Interchange
ascii
// ASCII => American Standard Code for Information Interchange
ASCII
Char Range | Dec Range
a-z 97 - 122
A-Z 65 - 90
0-9 48 - 57
ASCII Value
#include <stdio.h>
int main()
{
char chr;
printf("Enter a character: ");
scanf("%c", &chr);
\\ When %c is used, a character is displayed
printf("You entered %c.\n",chr);
\\ When %d is used, ASCII value is displayed
printf("ASCII value is %d.",chr);
return 0;
}
ascii values
aswin
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us