Wednesday, February 3, 2021

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

}

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