#include<stdio.h>
int main()
{
int a , i;
i=a;
printf("enter the number\n");
scanf("%d", &i);
do
{
printf("%d\n", i);
i=i-3;
} while (i>0);
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