Computer Science, asked by arifarizvi5989, 10 months ago

write a program to print the following : 1111 2222
3333
4444

Answers

Answered by rahulamde
3

Answer:

Idk

Explanation:

Answered by sandeepswain23
0

Answer:

#include<stdio.h>

int main()

{

 int row,a,i;

 printf("Enter the size:");

 scanf("%d",&row);

 for(a=1;a<=row;a++)

 {

  for(i=1;i<=row;i++)

   printf("%d ",a);

   printf("\n");

 }

}

Explanation:

Similar questions