![]() |
VOOZH | about |
The printing of patterns is the most common and interesting problem. This C program prompts users to input their names and transform each letter of the name into a visually appealing big star pattern.
For Example,
Input: NAME Output: * * **** * * ****** ** * * * ** ** * * * * ****** * ** * **** * ** * * * * * * * * * * * ******
We will use the switch statements, arrays and string parting in this program.
Output
**** ****** ****** * * * * * * * * ** **** **** *** * * * * * * **** ****** ****** * * What a beautiful name you have!
To know more about pattern printing in C refer to pattern programs in c