My first post

This is my website . Welcome everybody to my new website. Here there are some necessary things of yours.

কোন বছর অধিবর্ষ বা Leap Year কিনা তা নির্ণয়ের সি প্রোগ্রামিং

 #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