Skip to content

Instantly share code, notes, and snippets.

@Rajssss
Created February 12, 2019 02:57
Show Gist options
  • Save Rajssss/66c587f05cb1dd00bcec28f21868244e to your computer and use it in GitHub Desktop.
Save Rajssss/66c587f05cb1dd00bcec28f21868244e to your computer and use it in GitHub Desktop.
#include<stdio.h>
int main()
{
int a;
printf("\nEnter year=>");
scanf("%d",&a);
(a%100==0)?(a%400==0?printf("\nLeap\n"):printf("\nNot Leap\n")):(a%4==0?printf("\nLeap\n"):printf("\nNot Leap\n"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment