write a program to the ASCII values and their eqivalent character using a while loop the ASCII values vary from 0to 255.

 write a program to the ASCII values and their  equivalent character using a while loop the ASCII values vary from 0to 255.

#include<stdio.h>

#include<conio.h>

int main()

{

int i;

char ascii;

for(i=0;i<=255;i++)

{

printf("%c=%d\n",i,i);

}

}

 











Comments

Popular posts from this blog

if the marks obtain by a student in five different subjects are input through the keyboard write a program to find out the aggregate marks and percentage marks obtained by the student. assume that the maximum marks that can be obtained by a student in each subject is 100.

the length and breadth of a rectangle and radius of a circle are input through the keyboard. write a program to calculate the area and perimeter of the rectangle, and the area and circumference of the circle

If lengths of three sides of a tringle are input through the keyboard write a program to find the area of tringle.