Tux Education Our New Education Channel Please Share And Subscribe It...

/* Printing ASCII Value */


// Compiler : Dev C++4.9.9.2

#include<stdio.h>

int main()
{
    int i;
    
    printf("\t\t\t: : : ASCII Chart : : :\n\n\n");
    
    for(i=0; i<255; i++)
    printf("\n\t%c  :  %d",i,i);
    
    getch();
    return 0;
}

Post a Comment