write a program to display this first ten multiples of 5
maari1975muthu:
is it correct
Answers
Answered by
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
English,
2 months ago
Physics,
2 months ago
Math,
5 months ago
Art,
11 months ago
Social Sciences,
11 months ago