answersLogoWhite

0

#include <stdio.h>

#include<conio>

void main ()

{int a,i:,

printf("\n The Multiplication table of 5 is n"):,

For(i=1;i=20;i++)

Printf("%d",a*i);

getch();

}

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Write a program which takes the temperature in farhenheightthe program should display the farhenheight temperature as well as centigrade C equals?

Write a program which takes the temperature in farhenheight.the program should display the farhenheight temperature as well as centigrade. C= (f-32)*5/9


How do you write program c of table 5?

#include#includevoid main(){ int a,i;printf("\nThe Multiplication table of 5 is:\n");for(i=1;i


What is a visual display of data 5 letter word?

A visual display of data is a table or a graph.


Write a program which takes the gender and salary the age from user the program should calculate and display the following information you If gender is male and age is greater equals 18 then the tax?

Write a program which takes the gender and salary ,the age from user. the program should calculate and display the following information. i. If gender is male and age is greater &gt;=18,then the tax =5%of the salary. ii. If gender is female and age is &gt;=18,then tax=3%of salary. The program should display the output as follows: Gender = Age = Tax = Salary before tax = Salary after tax =


Program that display the first 5 odd numbers?

printf("1 3 5 7 9\n");


Can you give me a program that will compute number 1 to 5?

nr\m;laeoh9y0m g.qthnedxc In fortran: do i=1,5 write(6,*)i enddo stop end This program will write the numbers 1 to 5 on the screen.


How do you write a c program to shift the entered number by 3 bits left and also 5 bits right and display the result?

Input and output should be trivial; the core of it is: m = (n5Note: it is not the same as m = n>>2


Write a qbasic program to accept a no and print it multiple table?

Cls print the multiples tables of 1 to 5 for x=1 to 5 for y=1 to 10 print x;"*";y;"=";x*y next y print print next x end


How do you create a table of values for each rule with at least four values for x?

For each rule draw a table with 5 rows and 2 columns. At the top of each table write a caption denoting which rule applies to that particular table. In the top row of each table write the letter "X" in the first column and the letter "Y" in the second column. Now for each table in the first column in rows 2,3,4, and 5 write the values of X that apply to the experiment. Now apply the rule for each value of X for a particular table (particular rule) and write the value of Y (obtained by observation or calculation) in the corresponding column


Using while loop write a program which calculates the product of digits from 1 to 5 and also show these nos vertically?

Using while loop, write a program which calculates the product of digits from 1 to 5 and also show these no's vertically.


HOW TO SOLVE 'C' problem?

1. write a 'c' program to read 4(four)numbers from a file 'BANK' and calculate the average of the numbers.Now print the calculated average in another output file 'AVERAGE' 2. write a 'c' program that finds the sum and average of inputted five integer numbers of the array using dynamic memory allocation function malloc(). 3. write a 'c' program to create simple elements 1,2,3,4 in the link list of 4(four)nodes and display the list's elements. 4. write a 'c' program to convert the expression (A+B)/(C+D) into postfix expression into stack.and then evaluate it for A=10,B=20,C=15,D=5 and display the stack status after each operation. 5. write a 'c' programto create a linked list implemented on an array containing the following numbers:1,2,3,3,3,4,4,9 and pack it to remove the duplicate numbers.so that only the following data are contained by the nodes:1,2,3,4,9


How do you make a program for a multiplipication table?

here- class tableof5 { public static void main() {int i; for(i=1;i&lt;=10;i=i+1) {System.out.println("5"+"*"+i+"="+i*5); } } }