My Subject Blog

C Program Character to ASCII

/* Write a Program to which accepts a character from keyboard & display its ASCII code. */

#include <stdio.h>

int main(void) {
char ch;
printf("Enter any character : ");
scanf("%c",&ch);
printf("ASCII of %c is %d",ch,ch);
return 0;
}

Comments

Most Visited Post

C Program to Find Largest Odd Number from Array

C Program for Runtime Memory Allocation for Table of Integers

Followers