Offer

ASCII Table | ASCII Table in C language



ASCII Table Program 


ASCII Table Output


Copy Text from below 

#include<stdio.h>

#include<conio.h>

int main()

{

    int i;

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

    {


         printf(" %c -> %d ",i,i);

         printf("\t");

    }


}


For more Program :




Download pdf file : 




Post a Comment

0 Comments