C++ Programming Code Examples
C++ > If Else and Switch Case Code Examples
Switch Statement - what time is it
Every Possible Combination of two Strings -
Program display 'every possible combination' of two words from the given 2 string without displaying "repeated combinations". Convert string in 2D array. Make the first string words
C++ Implement Stack using Two Queues -
This C++ program implements a "stack data" structure using two queue data structures. A stack data structure foolows the principle of LIFO(last element in first element out). Enter
Paddle Graphic Sample in C Programming -
Sub functions to check the progress of the game, function to create paddle, functions to create bricks, clear a layer, produce various sounds, create a single brick, display symbol
C Code Find area of an equilateral triangle -
C program code input side of an equilateral triangle from user and find area of the given triangle. How to find area of an equilateral triangle in C. Area of an equilateral triangle
If Else If Statement & Multiple Conditions -
In this control structure we have only one 'if' and one 'else', however we can have multiple 'else if' blocks. This is how it looks: If none of the 'condition is true' then these statements
C Code Rotate left rotate an Array n times -
C program code to left rotate an array by n position. Logic to rotate an array to left by n position in C program. Read elements in an array say arr. Read number of times to rotate
Displaying the Inventory of Items in Store -
C Program display the inventory of items in a store. accepts the value of item name, item code, price, quantity & manufacture date. Then display those value in a structured way.
Program print Strong Numbers in a Range -
Strong number is special number whose sum of Factorial of Digits is equal to the original number. For example: 145 is strong number. Since, 1! + 4! + 5! = 145 Logic to print Strong