shapes with asterisks

logistic_guy

Senior Member
Joined
Apr 17, 2024
Messages
1,530
Write a C\displaystyle C program that prints the following shapes with asterisks.

diagram_13.png
 
I'm working on this simple program. Soon, I will show my work.
Not an awful lot of "work" necessary... 🤔

C:
#include <stdio.h>


int main() {


 printf("*********        ***            *             *\n");
 printf("*       *      *     *         ***           * *\n");
 printf("*       *     *       *       *****         *   *\n");
 printf("*       *     *       *         *          *     *\n");
 printf("*       *     *       *         *         *       *\n");
 printf("*       *     *       *         *          *     *\n");
 printf("*       *     *       *         *           *   *\n");
 printf("*       *      *     *          *            * *\n");
 printf("*********        ***            *             *\n");


    return 0;
}
 
Top