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/

LOOP IN C


 //printing anything multiple times by using loop in c


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

int main(){

    int i = 0;

while(i < 100){
    printf("hehe \n");
    i = i + 1;
}

    return 0;
}





Comments

Popular Posts