C complete programming for b-tech students
Saturday, 16 July 2011
C programme for multiplication table
#include <stdio.h>
#include <conio.h>
void main()
{
int n,i=1,rem;
printf("enter n"):
scanf("%d",&n);
for(i=1;i<=10;i++)
{
rem=n*i;
printf("%d*%d=%d",n,i,rem);
}
getch();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment