Skip to content

Instantly share code, notes, and snippets.

@simi
Created July 31, 2013 11:20
Show Gist options
  • Select an option

  • Save simi/6121214 to your computer and use it in GitHub Desktop.

Select an option

Save simi/6121214 to your computer and use it in GitHub Desktop.
int main(void)
{
int x;
for (x = 1; x < 10; x++) {
if ((x % 2) != 0) continue;
printf("Sude cislo: %i\n", x);
}
# nebo
int main(void)
{
int x;
for (x = 1; x < 10; x++) {
if ((x % 2) != 0) {
continue;
}
printf("Sude cislo: %i\n", x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment