move to repo.or.cz
[letusc.git] / ch2 / exercises1 / ex3.c
blob1cdac47e92c849749276d3e8e817fa8d70cfd2d7
1 /*leap year or not*/
3 #include<stdio.h>
5 //int main()
6 //{
7 // int year;
8 // printf("Enter the year: ");
9 // scanf("%d",&year);
11 // if(!(year%4))
12 // printf("The year %d is a leap year\n",year);
13 // else
14 // printf("It is not a leap year\n");
15 // return 0;
16 //}