Art, asked by shradhaankam23, 9 months ago

P
9542
70S
write a 'c' program to point Multiplication table from
I to 5
include<stdio.h>
include<conio.h>
main()
{
int i,j;
clrscr();
printf("multiplication table from 1 to 5\n"):
for(i=1;i<=5;i++)
{
for(j=1;j<=10;j++)
{
printf("%d\n",i×j);
}
printf("\t");
}
getch();
}​

Answers

Answered by VarunBajaj
2

Answer:

"1" (and any subsequent words) was ignored because we limit queries to 32 words.

✌✌please mark me as brainlist✌✌

Answered by Omkumargupta
1

Answer:

"1" (and any subsequent words) was ignored because we limit queries to 32 words.

✌✌please mark me as brainlist✌✌

Similar questions