how to make infinite loop in c

C
while( 1 ) { }
for( ;; ) { }//The way it works is very interesting I recommend looking it up.

// To stop the loop you can use the break keyword
// Like this
for( ;; )
{
	break; 
}//to start infinite loop set a variable that doesnt change
int flag=1;
while(flag==1)
{
	//enter code here
    //type condition for when you want to end loop
    	//type code
    	//change value of flag
        flag=2;
}
Source

Also in C: