Skip to main content

Featured

HOW TO ACTIVATE WINDOWS / OFFICE LIFETIME

 THANKS TO MR.MASSGRAVEL FOR THIS ITS REALLY SIMPLE JUST FOLLOW THE INSTRUCTION IN GITHUB GITHUB -  https://github.com/massgravel/Microsoft-Activation-Scripts/

WAP in C to find the series -5,-10,-15 upto 10th terms using while loop

// WAP in C to find the series   -5,-10,-15 up to 10th terms using while loop 


#include<stdio.h>

int main (){
    int i = 1;
    int a = -5;

    while (i<=10)
    {
        printf("%d ,", a);
        i += 1;
        a -= 5;
    }
   
    return 0;
}





Comments

Popular Posts