ASCII value finder

 #include <stdio.h>


int main() {

    // Write C code here

    char a;

    printf("Enter a alphabet : ");

    scanf("%c", &a);

    printf("ASCII value of %c is %d", a , a);

  

    

    return 0;

}

Comments

Popular posts from this blog

Sum of Even Numbers till N

Find the Runner-Up Score!

Print All Substrings