This repository contains a simple C program that demonstrates the use of nested loops to generate a specific number pattern. The program prints a numerical pattern using two nested while loops. The ...
The vertical line is formed by j == 3. The top of the "1" is formed by (i == 1 and j == 2). The diagonal at the top is formed by (i == 2 and j == 1). For "0": The top and bottom rows are filled except ...