User why are you using

user why are you using
while(1);
instead of
for(;;);

Attached: ukari.png (199x214, 30K)

forever=True
while (forever = True):

While(True)

Compile the same in gcc

while:

does it too

>assignment operator
nice

while(1) is easier to type and it's much clearer/more obvious what it does

>implying my language even has a while keyword

loop {}

while(true) or gtfo

#include
#include //optional

#ifndef _Bool //_Bool is usually defined by gcc
#define _BOOL_UNDEFINED
typedef struct {
uint8_t b:1; //tell the compiler we are only using one bit from the uint8_t
} _Bool; //standard gcc bool
#endif

int main(int argc, char* argv) {
#ifndef _BOOL_UNDEFINED //_Bool is not defined so we are using the struct
_Bool foo;
foo.b = 1;
while(foo.b)
#else //_Bool is define so we are using standard gcc _Bool
_Bool foo;
foo = 1;
while(foo)
#endif
printf("Size of bool: %li", sizeof(foo));
_builtin_unreachable(); //function is an infinite loop so this is unreachable
return 0;
}

Attached: 13-wojak_00.w1200.h630.jpg (1200x630, 68K)

(loop)

(\x.xx)(\x.xx)

Reported to the bugman police department for cyberterrorism.
Enjoy your time in jail degenerate scum

while(True)

GOTO:
goto GOTO;

Because anime was a mistake

Not anime, nigger.

REEEEEEEEEEEEE HE SAID SOMETHING BAD ABOUT MY CONSUMERIST BEHAVIOUR. ANTI-ANIME MAN BAD! ANIME GOOD!

Top post my good man, 10/10 behavior. Literally dripping with meaning.

user, it's wrong to refer to yourself in third person

if (; true)

valid sepples

Still not an anime pic.

>Answering a bait post
Just how retarded and bored are you guys are?

>bored
I exist in a timeless abyss where the only thing that has meaningfully interacted with my thoughts in the past millennia or so is my own thoughts.

Yeah? Well, I fucked your mother last evening, how does that work out with your timeless abyss?

for(int k = 0; k < 1; ++k) --k;

I use loop {
}

anyway, so long as optimization is enabled any compiler will make them the exact same, so you may as well go with the most readable one (loop or while(true))

int penis (int mega_benis)
{
mega_benis = penis( mega_benis + 1);

if (mega_benis > 10)
return mega_benis;

}

int is_kansaijin = 1;

while (is_kansaijin)
printf("seyana\n");

>use while(1) all the time
>fucking program will only run through code once then exit
>try all sorts of shit
>nothing works
>change to while (2>1)
>mfw it fucking works
>undo all changes
>change only while loop back to 2>1
>mfw original code works with this but not standard while (1)

wh-why use a struct?

while(op==fag)

>not using
while (true == true && false == false && true != false && false != true) { ... }

haha enjoy you're bugs

Based and Rustpilled

what compiler?

do{
}while(1);

>comparing 36 fucking bits to get an result you already know
bloat

Because while will run in a non zero state forever in C, cant you write something like
while("loop"){
/* stuff */

>not using aliases to make code more readable

#define loop while(1)
/* snip */
loop {
/* do stuff */
break;
}

repeat
{...}
until False;

forever $

main() {
op_is_a_faggot:
printf("やめたら?このゲーム\n");
goto op_is_a_faggot;
}

Attached: mpv-shot0004.jpg (1920x1080, 249K)

I dont remember.

>not using rust in the first place