Sunday, January 31, 2021

 #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;
}

No comments:

Software scope

 In software engineering, the software scope refers to the boundaries and limitations of a software project. It defines what the software wi...

Popular Posts