#include < stdio.h > void main() { int i=5; printf(“%d,%d,%d,%d,%d”, i++,i–,++i,–i,i); getch(); }
POD-21-Sep-2016
Write a Program to print a pattern in which user will enter square side length Example: Enter length of side of square: 7 # # # # # # # # # # # # # # # # # # # # # # # # # # # # #