Menu BAR

FEEL FREE TO ASK ANY PROGRAM and please mention any error if you find it

2 Feb 2013

Print ASCII table

Q.) Write a C- program to print the ASCII table.

Sol)

#include<stdio.h>

int main()
{
    int i ; 

    for(i=0;i<=255;i++)
           {
                   printf("ASCII values of character %c: %d \n,i,i") ;
            }
    return 0 ;
 }

No comments:

Post a Comment