Contact: aviboots(AT)netvision.net.il
40,954 questions
53,418 answers
573 users
#include <stdio.h> int main() { for (int i = 5; i >= 1; i--) { for (int j = 1; j <= i; j++) { printf("%c", 'A' - 1 + i); } printf("\n"); } return 0; } /* run: EEEEE DDDD CCC BB A */