#include<stdio.h> int main() { int i,j; for(i=0;i<=3;i++) { for(j=1;j<=4;j++) { printf("*"); } printf("\n"); } return 0; }
No comments:
Post a Comment