In this post, we will make a python program to check whether the given year is a leap year. Leap Year: One year in every four has 366 days [February has 29 days instead of 28]. The reason why we have leap years is really fascinating, this…
In this post, we are going to make a Python Program to Print Hello World. This program is very useful for those fellows who want to learn the syntax of the python language. Simple Python Program to Print Hello world Output: Hello world Print Hello…
In this program, we will make a program to check whether the given number is Armstrong. We will also make a python program to print(or find) Armstrong numbers in an interval. Armstrong numbers in python: Armstrong number is a number that is the sum of its…
In this C Program for Multiplication of Matrix using the 2D array, we will multiply two matrices A and B, e.g., C=A*B; then, we print matrix C. The number of columns of matrix A should equal the number of rows of matrix B. Multiplication of…
A menu driven program in python is a program that obtains a choice from a user by displaying the menu. Then, it will perform some operations and print the result according to the user’s choice. If you are looking for menu driven program for a…
In this post, we will make a c++ program for a cricket match. You can also download it. Vipul Khokhar makes this post. Old files are a bit complicated for users, so I just made one program containing all the code. If it works fine,…
In this post, we will make many menu-driven programs in c for different tasks, like a program to calculate the area of different shapes, perform the given tasks, and perform arithmetic operations between two matrices. Menu-driven program: A program that obtains a choice from a…