Q1. WAP to Print all characters with its ASCII value from 0 to 255 1
#include<stdio.h>
//WAP to Print all characters with its ASCII value from 0 to 255
int main()
{
int i;
for(i=0;i<=255;i++)
{
printf("\nASCII value of Character %c is %d",i,i);
}
return 0;
}