//print the all character from 'A' to 'Z' using for loop
#include <stdio.h>
int main (){
char cr;
for (cr='A';cr<='Z';cr++){
printf ("%c ",cr);
}
return 0;
}
output output output output output output output output
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
No comments:
Post a Comment