#include<stdio.h>
int main()
{
int a , i;
i=0;
printf("enter the number you want multiplication table of\n");
scanf("%d" , &a);
do
{
i=i+1;
printf("%d x %d = %d\n" , a , i , a*i);
} while (i<10);
return 0;
}
In software engineering, the software scope refers to the boundaries and limitations of a software project. It defines what the software wi...
No comments:
Post a Comment