Skip to content

Instantly share code, notes, and snippets.

@lucaspolo
Created December 6, 2021 14:18
Show Gist options
  • Save lucaspolo/33538e1e1dbdad9d02514f9a2b5d832c to your computer and use it in GitHub Desktop.
Save lucaspolo/33538e1e1dbdad9d02514f9a2b5d832c to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char* argv[]) {
int i = 0;
for(;;) {
printf("%d\n", i--);
i = i % 5;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment