Ticker

6/recent/ticker-posts

C programming, Iterate through and show characters from A to Z using a loop.





#include <stdio.h>
int main() {
    char b;
    for (b = 'A'; b <= 'Z'; ++b)
        printf("%b ", b);
    return 0;
}