pleaseeee help its urgent Using for loop, write a two lines code that produces the following output: 0, 10,
20,30, 40, 50, 60,70,80,90,100,
Answers
Answered by
0
Answer:
I can't understand your question.sorryyyy......
Answered by
0
Answer:
#include <stdio.h>
int main()
{
int lines=10;
int i=1;
int j;
for(i=1;i<=lines;i++){// this loop is used to print lines
for(j=1;j<=i;j++){// this lop is used to print the table of the i
printf("%d ",i*j);
}
printf("\n");
}
return 0;
}
Explanation:
This is input out nahi 1,2,........... In series
Similar questions