for ASCII value

 // for ASCII VALUE 

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

Comments

Popular posts from this blog

Use of function in mathematics

My resume using HTML and CSS