WAP to find leap year in c language
#include<stdio.h> int main() { int year; for(year=1900;year<=2400;year++) { if(year%400==0||(year%100!=0&&year%4==0)) printf("%d\n",year); } return 0; }
We discuss about programs problem in hackerrank and other in c, c++, python and algorithm.