Skip to content

Instantly share code, notes, and snippets.

@bparanj
Created April 11, 2018 08:58
Show Gist options
  • Save bparanj/7b47dcce2258cc1c944ac1e5c13f2ca2 to your computer and use it in GitHub Desktop.
Save bparanj/7b47dcce2258cc1c944ac1e5c13f2ca2 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#define LOWER 0
#define UPPER 3
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