Find the Middle of the Linked List
Problem statement You are given the head of a Singly Linked List, the task is to find the middle of the linked list. If the number of nodes…
Python Program to find if a given number is odd or even
Before Solving a problem you have to know about odd or even numbers. So, A number divisible by Two is an even number and a number not divisible…
C Program To Find if Given Number is Odd or Even
First of all, let’s understand what is odd and even. Odd Number Odd numbers are those which are not divisible by 2 or we cannot split them in…
Sum of two numbers in C
In this example, we will ask users to input two integer numbers and display the sum of these numbers. To understand this example you should have a basic…