User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:control_structures:break

Table of Contents

break

   syntax
   break;
   
   Description: break ends a loop immediately

C Sourcecode Example

#include <stdio.h> /* including standard library */
//#include <windows.h> /* uncomment this for Windows */
 
 
int main ( void ) {
 
int i;
i=0;
 
while (1) {
    i++;
    if (i==42) {
        break;
        }
  }
 
printf("The answer is %i\n",i);
return 0;
}

output

  cd@najai:~$ ./break 
  The answer is 42

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/control_structures/break.txt · Last modified: 2024/02/16 01:04 (external edit)

Impressum Datenschutz