answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How print table of 4 upto any 2 number using for loop in c program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a program to print the table of any number using two dimensional array in c program?

/* PROGRAMME TO PRINT THE TABLE OF A GIVEN NUMBER USING FUNCTION */#include#includevoid table(int,int);void main(void){int num,i;printf("\n Programme to print the mathematical table of a number.");printf("\n Enter the number : ");scanf("%d",&num);printf("\n Upto how many multiples of the given number do you want? ");scanf("%d",&i);table(num,i);getch();}void table(int num,int i){for(int j=1;j


How do you print an HTML table using PHP?

It is really simple to print an HTML table in PHP, all you have to do is the following: <?php print "<table>"; print "<tr>"; print "<td>hello</td>"; print "</tr>"; print "</table>"; ?>


How do you construct a java program that print table with backslash?

within inverted commas using two backslashes consequently .. we will print the backslash. ex: printf("//n it will gives output");


Write a program that read phrase and print the number of lower-case letter in it using function of counting?

write a program that reads a phrase and prints the number of lowercase latters in it using a function for counting? in C program


You want to write a simple without using pointer or array c program which will print greatest number when you give 20 number?

i want to write a simple without using pointer or array c program which will print greatest number when i give 20 number .........How far have you gotten so far?


How do you print from compaq laptop?

Use the option File / Print in the program you are using.


Using for loop write a progrma to print the table of a given number on the screen?

public class Table { public static void main(String[] args) { int num=Integer.parseInt(args[0]); System.out.println("Table"); for(int i=1;i<=10;i++) { System.out.println(i+"*"+num+"="+i*num); } } } its the program using command line arrgument...but you have to write it in notepad and then save is into bin folder..then go through your Dos promt and then complie it by javac and then run it by java comment.in run time you should pass the value as a command line then execute...but if you want to excute this program into netbins its not allowed..then you have to take the number as a static way...


Write a c program to print multiplication table using while loop?

void main() { int a,b,c,d; clrscr(); printf("\n Enter the number for table = "); scanf("%d",&a); printf("\n Enter the number up to which you want to see the table = "); scanf("%d",&b); for(c=1;c<=b;c++) { d=a*c; printf("%d * %d = %d\n", a,c,d); } getch(); }


Write c program to print palindrome using string without using strrev strlen strcam?

sdfdg


Write a program in qbasic to make a hut using print statemant?

a triangle then a square :)


Program for create a student detail in a table using HTML?

Oracle is a great program for creating a student detail in a table using HTML. One can even use a word processing platform too.


How do you print my name in c program in vertical manner using arrays?

you need strings to print any character(your name) this is not possible useing array:D