बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

c program to find leap year using ternary operator

c program to find leap year using ternary operator

c program to find leap year Conditional Operators


   #include
   #include
   void main()
   {
    int y;
    printf("\n Enter the year:");
    scanf("%d",&y);
    if(y%4==0 && y%100 !=0 ||y%400==0)
     printf("\n Entered year is leap year!!!!!!!");
    else
       printf("\n Entered year is not leap year!!!!!!!");
    getch();
   }

C Program example List