Post Page Advertisement [Top]

C-Programming

Write a program in c to display table form 1 to 10 ??

Write a program in c to display table form 1 to 10 ??

Code:-
/* table form 1 to 10.*/
#include<stdio.h>
#include<conio.h>
main()
{
int i=1,a=1,b=10;
while (a<=b)
{
while (i<=10)
{
printf("%d\n",a*i);
i=i+1;
}
a=a+1;
}
getch();
}


DizIT_Operators
Thank-You 

No comments:

Post a Comment

Bottom Ad [Post Page]