C program to print ASCII values.

#include<stdio.h>
#include<conio.h>
void main()
{
	clrscr();
	char ch;
	int i;
	for(i=1; i<255; i++)
	{
		ch=i;
		printf("%d -> %c\t",i, ch);
	}
	getch();
}
C program to print ASCII values. C program to print ASCII values. Reviewed by on December 22, 2019 Rating: 5

No comments:

Powered by Blogger.