बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

c program to print Display ASCII value of A-Z & a-z

c program to print Display ASCII value of A-Z & a-z

#include"stdio.h"
#include"conio.h"
void main()
{
char ch;
int i;
clrscr();
printf("ASCII value of A to Z is=\n");
ch='A';
for(i=0;i<26;i++)
{
printf("%c=%d\n",ch,ch);
ch++;
}
printf("\n\nASCII value of a to z is=\n");
ch='a';
for(i=0;i<26;i++)
{
printf("%c=%d\n",ch,ch);
ch++;
}
getch();
}


c program to  print
Display ASCII value of A-Z & a-z

C Program example List