Menu
Coddy logo textTech

Inverted right-angle triangle

Lesson 8 of 30 in Coddy's Star Pattern Bootcamp course.

challenge icon

Challenge

Easy

Write a program that prints a Inverted Right-angle triangle of stars as shown below.  The pattern consists of 6 rows and 6 columns.

Output Pattern:

* * * * * *
* * * * *
* * * *
* * *
* * 
* 

Try it yourself

#include <stdio.h>

int main() {
    // Write code here
    return 0;
};

All lessons in Star Pattern Bootcamp