C program to print hollow square star pattern with diagonal
In this article, I will show you, How to write a C program to print hollow square star pattern with diagonal. Here, one thing is important to know that all sides of the square must be the same. Method1: #include <stdio.h> int main() { int x = 0,y = 0; unsigned int squareSide = […]
C program to print hollow square star pattern with diagonal Read More »