PRINTING ASCII VALUE USING C PROGRAM
Solution:
#include<stdio.h>
void main(){
int i;
for(i=0;i<=255;i++){
printf("%d -> %c ",i,i);
}
return 0;
}
More C Program :
- PRINTING ASCII VALUE USING C PROGRAM
- write a c program to print ascii value of all characters
- how to check ascii value in c
- c program to find ascii value of all character
- c program to find ascii value of a number
- write a c program to print ascii value of given character
- c program to read a character and print its ascii value
- c program to print ascii value of any character
- c program to print ascii value of alphabets