Hello Devs,

In this tutorial, we are going to learn C program to display ASCII values

Here is a well-commented example you can understand and analyze.

# include <stdio.h>

int main(){
    int i;
  
    for(i=0;i<=255;i++)
         printf("ASCII value of character %c: %d\n",i,i);

    return 0;
}


I hope this example helps you.