C++ Programming Code Examples
C++ > Data Structures Code Examples
Add and subtract two polynomials (Using Linked List)
Efficient Implementations of Disjoint Sets -
numElements is the initial number of disjoint sets. Union "Two Disjoint" sets. For simplicity, we assume "root1 and root2" are distinct and represent set names. "root1" is the root of set
C Programming Add digits of the number -
In "for loop" condition is first tested and then body is executed. Carefully look at semicolon at the end of 'for loop', which tells us two things for loop is bodyless. Only condition...
C++ Program to Find Factorial of Number -
First think what is the factorial of a number? How 'mathematically' it can be calculated. If you got this info then it will be very easier to make a C++ code logic to find the "Factorial".
Program Code Find Area of Parallelogram -
C program to find area of Parallelogram. This C code Calculates the 'Area of Parallelogram'. The formula used in this c program are Area = b*a where b is the length of any base, a is the
Code find power of number using for loop -
C program to find power of a number using for loop. Input base and exponents from user. Store it in two variables say base and expo. Declare & initialize another variable to store
C++ Code to Print Smiling Face on Screen -
To 'print smiling face' in C++, first you have to ask how many smiling face user want to print on screen to print required number of smiling face on the screen. So to print smiling face on
Programming Code to Concatenate String -
To concatenate strings in 'C++' Programming, you have to ask to enter the 2 string and start concatenating one string into other using the strcat() function as shown here in the sample
C Code Reads two Strings & Concatenates -
C program Read two strings and Concatenate them, without using library functions. Display the 'Concatenated String'. Take two strings as input and store them in the arrays string1 and