Skip to content

Instantly share code, notes, and snippets.

View kellybrookes's full-sized avatar

Kelly Brookes kellybrookes

  • codefiestas
  • california
View GitHub Profile
@kellybrookes
kellybrookes / LeapYear.C
Created September 19, 2017 08:44
Program to check a leap year possibility
#include <stdio.h>
int main()
{
int year;
printf("Enter a year: ");
scanf("%d",&year);
if(year%4 == 0)