C++ Programming Code Examples
C++ > Games Code Examples
The Mind Reader
C Code to Find & Replace any desired char -
C Program to find and replace any desired character from the input text. Function to find and replace any text. Enter a line of text below. Line will be terminated by pressing...
C Delete all Duplicate Elements from array -
Delete all duplicate elements from an array. C program code to remove all duplicate integer values from an array. After performing delete operation array should only contain unique...
C++ Programs to Implement Skew Heap -
Inserting element "into the heap". Deleting "maximum element" from the heap. Merge two heaps. Print the 'maximum element' of the heap. And merge the present heap with
C Implementing Selection Sort Recursively -
This C Program implements a Selection Sort. 'Selection Sort' works by finding the smallest unsorted item in the list and swapping it with the item in the current position. It is used for
C Returns a Pointer to the first occurrence -
C programming code sample about returns a pointer to the first occurrence of str2 in str1 or a null pointer if there str2 is not part of str1. It returns a null pointer if no match is...
C++ Language Hello World Program Code -
Simple C++ program to display "Hello, World" on the screen. Since, it's a simple program, it is often used to illustrate the syntax of a c++ programming language. Every C++ program
Finds Strongly Connected Components in -
This is a C++ program "Displays the Nodes" which are strongly connected to each other. Strongly connected subgraphs are those in which a path is available from any node of
Replace all Occurrences of a Character in a -
Write a C program to 'Replace all Occurrence' of a character with another in a string using a Function. 'Input a string' from user, store it in some variable say str. Input old character and