Skip to main content

Posts

Pattern Printing - 4 by 4 pattern

#include<stdio.h> #include<conio.h> void main() {          int i, j;                for(i=0;i<=3;i++)          {               for(j=0;j<=3;j++)               {                      printf("*");               }          }          getch(); } o/p: ****        ****        ****        ****
Recent posts