Computer Science, asked by diyaa8801, 2 days ago

Write a C program to display the first 10 multiples of 5 using for loop.

Answers

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