Ticker

6/recent/ticker-posts

C programming, Find American standard code for information interchange value of a character.



#include <stdio.h>
int main() {  
    char c;
    printf("Enter a character: ");
    scanf("%c", &c);  
    printf("ASCII value of %c = %d", c, c);
    return 0;
}

Post a Comment

0 Comments