Finding The ASCII Value of Given Character In C Programming on June 18, 2018 Get link Facebook X Pinterest Email Other Apps #include <stdio.h> int main() { char ch; printf("\nEnter the character: "); scanf(" %c", &ch); printf("\nASCII value of %c is %d",ch,ch); return 0; } Comments
Comments
Post a Comment