My way
Code:
#include<stdio.h>
#define TRUE 1
#define FALSE 0
int main(void)
{
short int exitloop;
while(1)
{
exitloop=FALSE;
printf("Hello.\n");
while(1)
{
while(1)
{
printf("This is how i break this loop, back into the Hello loop\n");
exitloop=TRUE;
break;
}
if(exitloop==TRUE)
break;
}
}
return(0);
}