google.com, pub-6167773875660516, DIRECT, f08c47fec0942fa0 Write a c program to print table of a given number - 2nd puc computer science

Write a c program to print table of a given number

Write a c program to print table of a given number

write a c program to print table of any number using for loop,write a c program to print table of given number,write a c program to print table

#include<stdio.h>

#include<conio.h>

void main()

{

int i,n;

clrscr();

printf("Enter the number: ");

scanf("%d",&n);

for(i=1;i<=10;i++)

printf("%d*%d=%d\n",n,i,n*i);

getch();

}

Output:

Enter the number: 5

5*1=5                                                                          

5*2=10                                                                          

5*3=15                                                                         

5*4=20                                                                         

5*5=25                                                                         

5*6=30                                                                         

5*7=35                                                                         

5*8=40                                                                          

5*9=45                                                                         

5*10=50                                                                        

Write a c program to print table of a given number Write a c program to print table of a given number Reviewed by Vision Academy on December 22, 2021 Rating: 5

No comments:

CheckOut

Powered by Blogger.