Skip to content

Instantly share code, notes, and snippets.

@lucaspolo
Created December 6, 2021 14:15
Show Gist options
  • Save lucaspolo/0016457f139a429dc408621e09175940 to your computer and use it in GitHub Desktop.
Save lucaspolo/0016457f139a429dc408621e09175940 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++);
if (i == 5) {
i = 0;
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment