Peoples i have tried to make this simple progrem in C...
that will print alphabets A to Z and their equivalent ASCII code.. like this
A 65
B 66
.
.
.
Z
here is da source code...
int main (void)
{
char code;
for(code = "A";code <= "Z"; code += 1)
printf("%c, %d", code code);
getch();
}
tell me where is da problem