Wednesday, February 3, 2021

 #include<stdio.h>

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