C Program to Print Square With Diagonal Numbers Pattern

C Program to Print Square With Diagonal Numbers Pattern

Program to print square with diagonal numbers pattern in c; Through this tutorial, we will learn how to print square with diagonal numbers pattern using for loop and while loop in c programs.

C Program to Print Square With Diagonal Numbers Pattern

Use the following program to print square with diagonal numbers pattern using for loop and while loop in c programs:

  • C Program to Print Square With Diagonal Numbers Pattern using For Loop
  • C Program to Print Square With Diagonal Numbers Pattern using While Loop

C Program to Print Square With Diagonal Numbers Pattern using For Loop

#include <stdio.h>

int main()
{
	int rows;

	printf("Enter Square with Diagonal Numbers Side = ");
	scanf("%d", &rows);

	printf("Square with Numbers in Diaginal and Remaining 0's\n");

	for (int i = 1; i <= rows; i++)
	{
		for (int j = 1; j < i; j++)
		{
			printf("0 ");
		}
		printf("%d ", i);

		for (int k = i; k < rows; k++)
		{
			printf("0 ");
		}
		printf("\n");
	}
}

The output of the above c program; is as follows:

Enter Square with Diagonal Numbers Side = 5
Square with Numbers in Diaginal and Remaining 0's
1 0 0 0 0
0 2 0 0 0
0 0 3 0 0
0 0 0 4 0
0 0 0 0 5

C Program to Print Square With Diagonal Numbers Pattern using While Loop

#include <stdio.h>

int main()
{
	int i, j, rows;

	printf("Enter Square with Diagonal Numbers Side = ");
	scanf("%d", &rows);

	printf("Square with Numbers in Diaginal and Remaining 0's\n");
	i = 1;

	while (i <= rows)
	{
		j = 1;

		while (j <= rows)
		{
			if (i == j)
			{
				printf("%d ", i);
			}
			else
			{
				printf("0 ");
			}
			j++;
		}
		printf("\n");
		i++;
	}
}

The output of the above c program; is as follows:

Enter Square with Diagonal Numbers Side = 5
Square with Numbers in Diaginal and Remaining 0's
1 0 0 0 0 
0 2 0 0 0 
0 0 3 0 0 
0 0 0 4 0 
0 0 0 0 5 

Recommended C Programs

AuthorAdmin

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. As well as demo example.

Leave a Reply

Your email address will not be published. Required fields are marked *