answersLogoWhite

0


Best Answer

#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

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Program to display multiplication table for given number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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)


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.


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


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

sdfsdfsfsggbcvbg


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


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


How do you prepare a program in basic to display the word and the number of letters in it when is given as input?

10 cls 20 input"enter word";word$ 30 print word$ 40 print len(word$) 50 end this program is for GW BASIC for other BASIC's the line numbers are optional.


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