#include <stdio.h> void main() { int i, j; for (i = 6; i > 0; --i) { putchar('\n'); for (j = i; j > 0; --j) { putchar('*'); } } getchar(); }