C++ Program to implement insertion sort [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta INSERTION SORT Insertion sort is another sorting...
C++ Program to implement queue through classes and objects [DEVCPP/GCC] Prateek Gupta 1 Comment Prateek Gupta QUEUE Queue is a linear data structure in which...
C++ Program to implement stack through classes and objects [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta STACK A stack is a linear data structure in...
C++ Program to display the diagonal elements of a given matrix [DEVCPP/GCC] Prateek Gupta 3 Comments Prateek Gupta PROGRAM //Program to display the diagonal elements...
C++ Program to calculate factorial of a given number [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta STEPS 1. Initialize variable fact with 1. ...
C++ Program to check whether given number is Strong number or not [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta STRONG NUMBER A number is said to be a strong number...
C++ Program to calculate and print the roots of a quadratic equation [DEVCPP/GCC] Shikha Rajput Add Comment Shikha Rajput PROGRAM //Program to calculate and print the roots...
C++ Program to replace a character with a given character in a string [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta PROGRAM //Program to replace a character with a...
C++ Program to calculate sum of two numbers without using arithmetic operator [DEVCPP/GCC] Prateek Gupta Add Comment Prateek Gupta EXPLANATION Let the two numbers a and b be 3 and...