Skip to content

Instantly share code, notes, and snippets.

@joffilyfe
Created January 16, 2015 16:29
Show Gist options
  • Save joffilyfe/b27d3df4af570ddb6b8c to your computer and use it in GitHub Desktop.
Save joffilyfe/b27d3df4af570ddb6b8c to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
int i, j, auxiliar;
for (i = 1; i < 10; i += 2) {
for(j = 7 + i - 1, auxiliar = 3; auxiliar > 0; j--, auxiliar--) {
printf("I=%d J=%d\n", i, j);
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment