program to print ASCII VALUES/TABLE.| Using C language| C Program series 17|
👨💻Program to print ASCII VALUES/TABLE.
Code:
//program to print ASCII VALUES/TABLE.
#include<stdio.h>
main()
{
printf("ASCII TABLE\t\t[NOTE:ASCII VALUES ARE REPESENTED IN BETWEEN | | THIS TWO LINES]\n\n");
int i=0;
while(i<=255)
{
printf("%d.|%c|\n",i,i);
i++;
}
}
Output:
Comments
Post a Comment