#include <stdio.h> int main() { int i; for (i = 0; i < 5; i++) { printf("%*c%s", i * 2, ' ', "* * * * *"); } return 0; }