Quick actions

cmd+k|ctrl+k

Navigation

Languages

Printing the ASCII value

Snippet info

Language

C

Visibility

public

Author

mohiuddintamim999

Created

2020-10-12T18:35:06Z

Updated

2020-10-12T18:35:06Z

#include <stdio.h>

int main(void) {
    char ch;
    scanf("%c", &ch);
    printf("%d", ch);
    return 0;
}
INFO