Program to print mirror image of Swastika Pattern
Given the number of rows and columns, print the mirror image of swastika pattern.Note : The number of rows and columns should be same and an odd number. This will generate a perfect mirror image of swastika pattern. Examples : Input : row = 5, col = 5 Output : * * * * * * * * * * * * * * * * * Input