Pages
(Move to ...)
Assignment
Synopsis
C
Graphics
Compiler
C#
DCN
DBMS
Discrete Math
DS
IT Fun
Java
Json
NIELIT
Notes
Office
OOPS
OS
PHP
Project
Phython
Question
SSAD
Web
UGC Net
VB
ASP
▼
Thursday, 3 August 2017
Multiplication Table
#include
<stdio.h>
void
table(
int
);
void
main()
{
int
i;
printf(
"Enter number>> "
);
scanf(
"%d"
,&i);
table(i);
}
void
table(
int
n)
{
int
i;
for
(i=1;i<=10;i++)
printf(
"\n%d*%d=%d"
,n,i,n*i);
}
Download Source
Next Question
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment