Write a program to display first 10 multiple of the number 7 using for next loop
Answers
Answered by
0
Answer:
#include<stdio.h>
#include<conio.h>
void main()
{
int i,n;
for(i=1;i<=10;i++)
{
printf("%d",7*1);
}
getch();
}
Explanation:
Similar questions