Author: Manoj Kumar
In this article, we will write a C program to find the cube of a number. The program takes a number N from the user as input, calculates its cube, and prints th... Read more.
In this article, we will write a C program to find the sum of natural numbers with the help of recursion. The program takes a number N from the user as input, c... Read more.
In this article, we will write a C program to find the range of different built-in data types. The range of a data type specifies the minimum and the maximum va... Read more.
In this article, we will write a C program to find the most frequent element in an array. A most frequent element is nothing but an element which is repeated fo... Read more.
In this article, we will write a C program to print the elements of an array using recursion. The program first takes the elements of the array from the user as... Read more.
In this article, we will write a C program to print array elements using pointers. The program first takes the elements of the array from the user as input and ... Read more.
In this article, we will write a C program to find all the unique elements in an array. Given an array of size N, our task is to find out all the elements which... Read more.
In this article, we will write a C program to insert an element at the beginning of an array. We are basically given an array of size N and our task is to take ... Read more.
In this article, we will write a Python program to find the largest of three numbers using nested if else statements. The program takes three numbers from the u... Read more.
In this article, we will write a Python program to print a hollow diamond star pattern. The program takes the number of rows that the diamond should have from t... Read more.