LOOPS

*LOOPS*

{loops are three types }

&&&&&&&&&&&&&&&

1st = while 

syntax

while(variable<=5)

{

variable++

}

&&&&&&&&&&&&&&&&

2nd= do while 

syntax

do 

{

variable++

}

while(variable<=5);

$$$$$$$$$$$$$$$$$$$$$$$

3rd=for  [ mostly used by me ]

syntax

for(variable=1;variable<=5;variable++)

{

}

---------------------------------------------

* PROGRAM RUN SCREEN *

---------------------------------------------


# SOURCE CODE #

################

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

// code [UB] //

main()

{
int i=1;
clrscr();
for(i=1;i<=1000000000000;i++)
{
printf("\f😈hello motherfu***r😈");
}

getch();

}

###################

*ALL RIGHTS GOES TO [UB CODES]*

/-------------------------------------------------\

Popular posts from this blog

[2D] ARRAY

Switch in C

2D [STRING] IN C