Find all types of basic coding here.
/* C program to find ASCII value of a given character */ void main() { char c; printf("Enter a character: "); scanf("%c",&c); printf("ASCII value of %c is: %d",c,c); }
No comments:
Post a Comment