answersLogoWhite

0

#include<stdio.h>

main()

{

int i,n;

clrscr();

printf("enter the value");

scanf("%d", &n);

while(i<=10)

{

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

i++;

}

getch();

}

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is it called when two factors work together to produce a given number?

Multiplication


How do you write a program to read set of numbers using by an array and display the ascending order of the given input numbers?

To write a C++ program to display the student details using class and array of object.


How do you write a program that outputs a given characters in reverse?

write the javascript code to display the reverse no. of given no. (e.g. 247 reverse of 742)


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


What is the Identitive property?

The Identity Property of Multiplication states that when a given number is multiplied by 1, the result equals the given number. Thus, 1 is the multiplicative identity.a x 1= a


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.


Write a c program using while loop to accept a number check and display message whether number is perfect or not?

The program is here guys.......... //Finding whether the given number is perfect or not //Starts here #include&lt;stdio.h&gt; void main() { int i=1,temp=0,number; scanf("%d",&amp;number); while(i&lt;=number/2){ if(number%i==0) temp+=i; i++; } if(temp==number) printf("Its a perfect number"); else printf("Its not a perfect number"); } //ends here


Do an 8086 assembler program to find parity of a given number?

sdfsdfsfsggbcvbg


How write a program to input any number and display digits which are absent in given number?

To write a program that inputs a number and displays the digits absent in it, you can follow these steps: Convert the input number into a set of its digits. Create a set of all possible digits (0-9). Subtract the set of digits from the complete set to find the missing ones. Display the missing digits. Here’s a simple example in Python: number = input(&quot;Enter a number: &quot;) present_digits = set(number) all_digits = set('0123456789') missing_digits = all_digits - present_digits print(&quot;Missing digits:&quot;, ''.join(missing_digits))


Program to display pyramid for given number 1 101 10001 1000001 100000001?

use whitespace and increase 0 By n+2..consider n=1 first and then follow the process with two loops.. for thecolumnand row.


What number can you use to multiply 7069 to get 1 as an answer?

To get to answer of 1 in a multiplication problem such as this you multiply the given number by it's inverse. In your example: 7069 * 1/7069 = 1


Could you write a assembly language program in tasm To check whether a given number present in a sequence of given memory location containing the string to be checked in 8086?

8086 assembly language program to check wether given number is perfect or not