Ads

Wednesday, August 5, 2009

c program

#include#include
void main()
{char c;
printf("\n");
for(c=65;c<=122;c=c+1)
{ if(c>90 && c<97) continue;
printf("%4d-%c" ,c,c);
}
printf("\n");
getch();
}

No comments:

Post a Comment