“Wartość ASCII” Kod odpowiedzi

ASCII

Char Range | 	Dec Range 
	a-z         97 -  122 
	A-Z 		65 -   90 
	0-9 		48 -   57
PrashantUnity

ASCII

// ASCII => American Standard Code for Information Interchange
ALeonidou

Wartość ASCII


#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;
}
Marlon Oquina

Wartości ASCII

aswin
Gifted Grasshopper

Liczby ASCII

ASCII_TABLE
TSHEGOFATSO PIET MAUTLANE

Odpowiedzi podobne do “Wartość ASCII”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu