Math, asked by jillyraniboro13, 2 months ago

write a program to print first 10 multiple ​of 5

Answers

Answered by Aditya1600
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