/* putchar example: printing the alphabet */ #include <stdio.h> int main () { char c; for (c = 'A' ; c <= 'Z' ; c++) putchar (c); return 0; }