EDUTAINMENT
EDUCATION + ENTERTAINMENT = EDUTAINMENT
Pages
Home
C Programs
C++Programs
Java Programs
Data Structures
Python Programs
HTML Programs
Download Books
GATE PAPERS
Auto AdSense
Wednesday, 17 September 2014
C program of Multiplication table of n upto m
/*Multiplication table of n upto m*/
#include<stdio.h>
#include<conio.h>
void main()
{
int n,I,m;
clrscr();
printf("enter n and m \n");
scanf("%d %d",&n,&m);
for(i=1;i<=m;i++)
printf("%d * %d = %d\n",n,i,n*i);
getch();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment