write a program to print table of 13 upto 5 time
Answers
Answered by
0
Answer:
In C program
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i,a;
clrscr();
printf("\n THE 13TH TABLE UP TO 5 TIMES IS :");
for(i=0;i<=5;i++)
{
a=13*i;
printf("\t %d \n",a);
}
getch();
}
Explanation:
13
26
39
42
55
Similar questions
https://brainly.in/question/15125927