Right Direction Arrow
Lesson 14 of 30 in Coddy's Star Pattern Bootcamp course.
Challenge
EasyWrite a program that prints a Right Direction Arrow of stars as shown below. The pattern consists of 11 rows and 6 columns.
Expected Output Pattern:
*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * *
* * * *
* * *
* *
* Try it yourself
#include <stdio.h>
int main() {
// Write code here
return 0;
};All lessons in Star Pattern Bootcamp
3Intermediate Level Pattern's
Pyramid of starsInverted PyramidDiamond PatternRight Direction ArrowLeft Direction ArrowPlus PatternX Pattern