C++ Program to split an array into two arrays [DEVCPP/GCC] Shikha Rajput Add Comment Shikha Rajput PROBLEM We have to split an array into two...
C++ Program to implement Binary Search [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta BINARY SEARCH Binary Search is a fast searching...
C++ Program to check whether a number is perfect number or not [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta PERFECT NUMBER A positive number is said to be...
C++ Program to implement Linear Search [DEVCPP/GCC] Shikha Rajput Add Comment Shikha Rajput LINEAR SEARCH Linear search consists of an array...
C++ Program to merge two arrays [DEVCPP/GCC] Shikha Rajput Add Comment Shikha Rajput //Program to merge two arrays (in an efficient...
C++ Program to check whether given number is prime or not [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta PRIME NUMBER A natural number (>1) is said...
C++ Program to reverse a single dimensional array without using another array [DEVCPP/GCC] Shikha Rajput Add Comment Shikha Rajput PROGRAM //Program to reverse a single dimensional...
C++ Program to calculate factorial of a number using goto and Labels [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta STEPS To calculate factorial of a number, 1. Initialize...
C++ Program to reverse a single dimensional array using another array [DEVCPP/GCC] Shikha Rajput Add Comment Shikha Rajput PROGRAM //Program to reverse a single dimensional...
C++ Program to perform the addition of elements of an array [DEVCPP/GCC] Shikha Rajput Add Comment Shikha Rajput PROGRAM //A simple program to perform the addition...
C++ Program to obtain the sum of digits of given number [DEVCPP/GCC] Prateek Gupta 1 Comment Prateek Gupta STEPS In order to calculate the sum of digits of...
C++ ARRAYS Shikha Rajput Add Comment Shikha Rajput ARRAY An array is a collection of elements(variables)...
C++ Program to convert a String into Title Case [DEVCPP/GCC] Shikha Rajput Add Comment Shikha Rajput TITLE CASE A sentence is said to be in Title Case...
C++ Program to check whether user has entered integer data or not [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta STREAM RELATED FUNCTIONS fail() This function...
C++ Program to find the largest even number and largest odd number [DEVCPP/GCC] Shikha Rajput 2 Comments Shikha Rajput PROGRAM // Program to find the largest even number...
C++ Program for Mini Calculator [DEVCPP/GCC] Shikha Rajput 1 Comment Shikha Rajput PROGRAM //A simple program for Mini Calculator...