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 ( 504 to 100 ) using while loop

 // WAP in C to print ( 504 to 100 ) using while loop


#include<stdio.h>
#include<conio.h>

int main (){

    int i = 504;
    while (i>=100)
    {
        printf("%d ",i);
        i = i - 1;
       
    }
   

    return 0;
}

Comments

Popular Posts