Browsing category

If block

Python program for check whether given year is leap using function

Python program for check whether given year is leap using function In this article, we will discuss the concept of Python program for check whether given year is leap using function In this post, we are going to learn how to write a program to check  the given year is leap or not using function…

C program for check whether given year is leap using function

C program for check whether given year is leap using function In this article, we will discuss the concept of C program for check whether given year is leap using function In this post, we are going to learn how to write a program to check  the given year is leap or not, using function …

C++ program for check whether given year is leap using function

C++ program for check whether given year is leap using function In this article, we will discuss the concept of C++ program for check whether given year is leap using function In this post, we are going to learn how to write a program to check  the given year is leap or not using function …

Switch case statement in Cpp language

Switch case statement in Cpp language In this tutorial, we will discuss the Switch case statement in Cpp language Switch statements in C++ select one option from multiple options of cases based on a switch expression. The switch case statement is similar to if else if … else ladder. but it is not as same as…

switch case statement in C language

switch case statement in C language Switch case statements In this tutorial, we will discuss switch case statement in C language The switch statement in C, select one option from multiple options of cases based on a switch expression. Switch case statements similar to if else if … else ladder but it is not same as…