Question: Write a c program that outputs a right isosceles triangle of height and width 3. Your output should look like the following. Use 3 printf
Write a c program that outputs a right isosceles triangle of height and width 3. Your output should look like the following. Use 3 "printf" functions. * ** *** 2. Rewrite your solution to 1. using "for" loops and the "putchar" function. 3. Repeat 2 using "do while" loops. 4. Repeat 2 using "while" loops. Compile all code with a makefile.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
