Computer Science, asked by braranmol, 8 months ago

write a program to print table of 13 upto 5 time ​


AbhijithPrakash: Maybe this can help you.

https://brainly.in/question/15125927

Answers

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