C Program to Print Diamond Star Pattern

In this tutorial, i am going to show you how to print diamond star patterns with the help of for loop, while loop, and do-while loop in c programs. All C Programs to Print Diamond Star Pattern C Program to Print Diamond Star Pattern using For Loop #include<stdio.h> int main() { int i, j, rows; … Read more

C Program to Check Symmetric Matrix

In this tutorial, i am going to show you how to check symmetric matrix in c programs. Algorithm to check symmetric matrix Follow the below given algorithm to write a program to check symmetric matrix; as follows: C Program to Check Symmetric Matrix /* C Program to check Matrix is a Symmetric Matrix or Not … Read more