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.5,6.0,6.5 up to 100th terms using while loop

 // WAP in C to find the series 5.5,6.0,6.5 up to 100th terms using while loop


#include<stdio.h>

int main (){
    int i = 1;
    float a = 5.5;

    while (i<=100)
    {
        printf("%f ,", a);
        i += 1;
        a += .5;
    }
   
    return 0;
}

Comments

Popular Posts