Hi, welcome to my website Programming.OM. My name is Om prakash kartik. This blog helps you to learn programming languages concepts and technique.
#include<stdio.h> #include<conio.h> void main() { int i,j; clrscr(); for(i=1;i<=5;i++) { for(j=1;j<=5;j++) { if(i==3||j==3) printf("* "); else printf(" "); } printf("\n"); } getch(); }
0 Comments