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 print (-3 -6 -9 to -99 ) using while loop

 // WAP in C to print (-3 -6 -9 to -99 ) using while loop


#include<stdio.h>


int main (){


    int i = -3;

    while (i>=-100)

    {

        printf("%d ",i);

        i = i - 3;

        

    }

    

    return 0;

}





Comments

Post a Comment

Popular Posts