/* ex0904.c */ #include <stdio.h> int main() { char alfabet; for(alfabet='A'; alfabet<='Z'; alfabet=alfabet+1) { printf("%c ", alfabet); } putchar('\n'); return(0); }
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 Process returned 0 (0x0) execution time : 0.085 s Press any key to continue.
Tidak ada komentar:
Posting Komentar