Computer Science, asked by maari1975muthu, 5 months ago

write a program to display this first ten multiples of 5​


maari1975muthu: is it correct
thakurvaishnavi689: yes
maari1975muthu: OK thank u saved me punnakku
maari1975muthu: I am sorry I typed unknownil

Answers

Answered by thakurvaishnavi689
0

Answer:

How do we write a program displaying the first ten multiples of five? In R: 1:10*5.

...

In C:

#include <stdio. h>

int main() {

int i;

for (i=1; i<=10; ++i) printf(“%d\n”, i*5);

return 0;

}

Similar questions