Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Last active July 17, 2017 17:32
Show Gist options
  • Save ThePratikSah/405c5af68e03835b879129652d983cee to your computer and use it in GitHub Desktop.
Save ThePratikSah/405c5af68e03835b879129652d983cee to your computer and use it in GitHub Desktop.
for (i = 0 ; i < 10 ; ++i) {
if ( i == 5 ) {
break;
printf("%d",i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment