C PROGRAM TO PRINT ASCII VALUES OF ALPHABETS



/*PROGRAM TO PRINT ASCII VALUES OF ALPHABETS*/
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i='A';
while(i>='A'&&i<='Z')
{
printf("\n %c = %d",i,i);
i++;
}
getch();
}

For more C programs - click here

Popular posts from this blog

8051 Assembly Program Code for Sorting in Descending Order - Keil - AT89C51

8051 Assembly Program Code for Sorting in Ascending Order - Keil -AT89C51