3) Check whether the below program print
the below pattern
1111
222
33
void main()
{
int i, j, n;
scanf("%d", &n);
for (i = 1; i<=n; i++)
{
for(j = 1; j<=n; j++)
{
printf("%d", i);
}
printf("\n");
}
}
Answers
Answered by
1
Answer:
this is question. but this is not a question
like the and follow please
Similar questions
Accountancy,
3 months ago
Social Sciences,
3 months ago
Math,
7 months ago
Biology,
7 months ago
Math,
11 months ago
CBSE BOARD X,
11 months ago