My first post
This is my website . Welcome everybody to my new website. Here there are some necessary things of yours.
#include<stdio.h>
#include<conio.h>
Main
()
{
Int y;
printf (“Enter year :”);
scanf (“%d ”, &y);
if (y%400==0)
printf(“The year is Leap Year”);
else if ((y%4==0) && (y%100!=0))
printf(“The year is Leap Year”);
else
printf(“The year is Not Leap Year”);
getch () ;
}
Comments
Post a Comment