/*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();
}
Chat with our AI personalities
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
In what situtation can you use only multiplication to find equivalent fraction? Give an example
When the fraction is in simplest terms.
Multiplication can be thought of as repeated addition because when you multiply two numbersÊit is equivalent to adding one of these two numbers to itself the number of times indicated by the second number. For example, 2 x 4 can be written in addition form as 2 plus 2 plus 2 plus 2. It can also be given as 4 plus 4.
Compatible Numbers