Skip to content

Instantly share code, notes, and snippets.

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