Break
Can also be used in for, while, do-while loops
break terminates these loops early, control transfers to the first stmt after the loop
Example:/* this function returns 1 if “a” is in increasing order, 0 otherwise */int monotonic(int a[], int N){ int i; for (i=0; i<=N-1;i++) { if (a[i+1] < a[i]) break; } if (i==N) return 1; else return 0;}