answersLogoWhite

0


Best Answer

/*mycfiles.wordpress.com

Program to prepare Table of any no. using while loop*/

#include

#include

void main()

{

int n,t,count=1;

clrscr();

printf("Enter any number\n\n");

scanf("%d",&n);

while(count<=10)

{

t=n*count;

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

count++;

}

getch();

}

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: C program that prints out multiplication table of any given numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

C plus plus program that prints out multiplication of n given numbers?

Push all the numbers into a suitable vector then call this function: template&lt;typename T&gt; long long product(std::vector&lt;T&gt; v) { assert(v.size()&gt;1); T total = 0; std::vector&lt;T&gt;::const_iterator i=v.begin(); total = (*i); while( ++i!= v.end() ) total *= (*i); return(total); } Alternatively, use a variable arguments list.


Shell program for gcd of three given numbers?

write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? check bellow link http://bashscript.blogspot.com/2009/08/gcd-of-more-than-two-numbers.html


Can you get me a c program to get the multiplication table for given n numbers?

#include#includevoid main(){void mul(int n);clrscr();mul(5);//Number to print the Multiplication Tablegetch();}void mul(int n){int i;for(i=1;i


Is there any maths mentioned in the Torah?

Yes. Here are a few examples: addition of twelve numbers in the tens of thousands (Numbers ch.1).Percentages (Numbers ch.32).Multiplication of several numbers by twelve (Numbers ch.7, whose sums are given at the end of the chapter).Multiplication of 273 times 5 (Numbers 3:44-51).


If you were given a multiplication problem with three numbers Would the order of the numbers matter?

No. 4 x 5 x 6 = 6 x 4 x 5


What is multiplying a number by 1 that gives a product identical to the given number?

That is because 1 is the identity element of numbers with respect to multiplication.


What is matrix programming in C programming?

C Examples on Matrix OperationsA matrix is a rectangular array of numbers or symbols arranged in rows and columns. The following section contains a list of C programs which perform the operations of Addition, Subtraction and Multiplication on the 2 matrices. The section also deals with evaluating the transpose of a given matrix. The transpose of a matrix is the interchange of rows and columns.The section also has programs on finding the trace of 2 matrices, calculating the sum and difference of two matrices. It also has a C program which is used to perform multiplication of a matrix using recursion.C Program to Calculate the Addition or Subtraction & Trace of 2 MatricesC Program to Find the Transpose of a given MatrixC Program to Compute the Product of Two MatricesC Program to Calculate the Sum & Difference of the MatricesC Program to Perform Matrix Multiplication using Recursion


You have some prints of Edgar a guess your husband mother was given these prints from 1931 you wold like to know who you can contact ferndale Michigan?

Prints are run in large numbers and have no intrinsic value regardless of age. They are worth what someone will pay on e-bay. Prints may have some intrinsic value if they are signed &amp; numbered limited edition prints. In which case you can take to an art gallery for an evaluation.


How do you write a program that removes all occurrences of a given X in a given sequence of numbers?

You do nothing! A sequence of numbers will contain no X and so nothing needs doing!


Is multiplication is used in LCM?

Yes it is. LCM stands for lowest common multiple, meaning lowest number that all numbers given go into evenly.


What is repeated multiplication?

When you make it longer (in index numbers) E.g. 5 and the small number is 2 the answer is 25 right? Well repeated multiplication is: 5 times 5 ( I don't have the multiplication sign)


How do you write a c program sum of ODD Numbers in the Given Range?

Reference: cprogramming-bd.com/c_page4.aspx#ODD%20 Numbers