Programming Blog

This blog is about technical and programming questions and there solutions. I also cover programs that were asked in various interviews, it will help you to crack the coding round of various interviews

Friday 12 January 2018

C program to print ASCII value of characters

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
char ch;
int i;
for(i=1; i<255; i++)
{
ch=i;
printf("%d -> %c\t",i, ch);
}
getch();
}

No comments:

Post a Comment