Write a C program to display the first 10 multiples of 5 using for loop.
Answers
Answered by
0
Answer:
#include <stdio.h>
int main() {
printf("The first 10 multiples of 5 is \n");
for(int i = 1; i <= 50; i++){
if(i % 5 == 0){
printf("%d " , i);
}
}
return 0;
}
Explanation:
Similar questions
English,
1 day ago
Math,
1 day ago
Math,
2 days ago
Computer Science,
8 months ago
Economy,
8 months ago