#!/usr/local/bin/tcc -run #include int main(void) { int i,j; for(j=5;j>0;j--){ for(i=1;i<=j;i++){ printf("*"); } printf("\n"); } return 0; }