Skip to content

Instantly share code, notes, and snippets.

@bparanj
Created April 11, 2018 08:55
Show Gist options
  • Save bparanj/de0313f4636cbaeb488354273ccad65f to your computer and use it in GitHub Desktop.
Save bparanj/de0313f4636cbaeb488354273ccad65f to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
int count;
for(count = 0; count < 3; count++) {
printf("%d \n", count);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment