PRINTING ASCII VALUE USING C PROGRAM

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 :


  1. PRINTING ASCII VALUE USING C PROGRAM
  2. write a c program to print ascii value of all characters
  3. how to check ascii value in c
  4. c program to find ascii value of all character
  5. c program to find ascii value of a number
  6. write a c program to print ascii value of given character
  7. c program to read a character and print its ascii value
  8. c program to print ascii value of any character
  9. c program to print ascii value of alphabets


Learn More :