write a program to print first 10 multiple of 5
Answers
Answered by
2
Answer:
int main() { int i; for (i=1; i<=10; ++i) printf(“%d\n”, i*5);
Step-by-step explanation:
mark as brainlist ;)
Similar questions