Write a C program to print heart star pattern with name in the center. How to print heart star pattern with the name in center using for loop in C programming. Program to print the below heart star pattern.
Example
Input
Input N: 10
Output
Required knowledge
Basic C programming, If else, For loop, Nested loop
Program to print heart star pattern with name in center
Output
Enter your name: Codeforwin Enter value of n: 10 ***** ***** ******* ******* ********* ********* *****Codeforwin**** ***************** *************** ************* *********** ********* ******* ***** *** *
Happy coding