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

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including 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. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

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