83. C Program to Print ASCII Values from 0 to 255.
How does this program work?
- This Program is used to print ascii values from 0 to 255.
Here is the code
#include <stdio.h>
int main(void)
{
int i;
for(i=0; i<=255; i++)
{
printf("ASCII value of character %c = %d\n", i, i);
}
return 0;
}