(C PROGRAMMING ONLY) 4. Pyramid Schemes by CodeChum Admin They said pyramids were created by aliens, so if you can make a pyramid you might be able to qualify as an alien. Instructions: In the code editor, you are provided with a main() function that asks the user for an integer input n, and passes this value to the function call of the generatePattern() function. Your task is to implement this generatePattern() function which has the following description: Return type - void Function name - generatePattern Parameters - 1 integer n Description - this function prints a triangular pattern of letter T's based on the value of n. For more information, refer to the output in the test cases DO NOT EDIT ANYTHING IN THE MAIN Input 1. Integer n Output Enter n: 4 T TT TTT TTTT
(C
4. Pyramid Schemes
by CodeChum Admin
They said pyramids were created by aliens, so if you can make a pyramid you might be able to qualify as an alien.
Instructions:
In the code editor, you are provided with a main() function that asks the user for an integer input n, and passes this value to the function call of the generatePattern() function.
Your task is to implement this generatePattern() function which has the following description:
Return type - void
Function name - generatePattern
Parameters - 1 integer n
Description - this function prints a triangular pattern of letter T's based on the value of n. For more information, refer to the output in the test cases
DO NOT EDIT ANYTHING IN THE MAIN
Input
1. Integer n
Output
Enter n: 4
T
TT
TTT
TTTT
Step by step
Solved in 3 steps with 1 images