Computer Science, asked by srinjoy55, 5 months ago

what is the output of this c program
int i,j;
for(i=1,i<=5,i++);
{
for(j=1.j<=i,i++);
{
printed("%d",I);
}
}
getch();
}​

Answers

Answered by Vasistha27
0

Answer:

please follow me and add me to your brainlist answers please.

Answered by karresat96
0

Answer:

1

2 2

3 3 3

4 4 4 4

5 5 5 5 5

Explanation:

print I value if I equals 1 print one and next step print I is 2

Similar questions