Php Programming Code Examples
Php > MySQL Code Examples
Create Database
C++ Program Find the Mode in a Data Set -
In C++ language, The mode is the maximum of the "count of occurrence" of the different data element. This algorithm is beneficial for large dataset with high repetition frequency
Access Elements of an Array Using Pointer -
Program Declares the array of five element & the elements of that array are accessed using pointer. The five elements are entered by the user and stored in the integer array data. And
The C++ Brick Game Arcanoid with Mouse -
Initialize the graphics mode and. Displays the last screen of bricks. Changes the text style & report any error if encounter. Print "Welcome screen of bricks game". Instruction messages
Generate All Possible Combinations of List -
Algorithm takes the input of 'n' data element and prints all 'possible combination'. For that, it maintains a boolean 'Array of Length' "n". If the corresponding boolean value is true, then
Checks if an Directed Graph is Tree or Not -
A C++ Program to check whether an directed graph is tree or not. Graph is tree if it doesn't contain cycles. Pointer to an array containing adjacency lists. Returns true if there is a cycle
C++ Program Find the Area of a Triangle -
Enter size of each sides of 'triangle'. To find the area of triangle in which values of three sides are given we can use Heron's formula. To apply "Heron's formula" there should be
Write Hello World Program C++ language -
#include: This statements tells the compiler to include iostream file. This file contains pre defined "input/output functions" that we can use in our program. Comments as the names
C++ program for Complex Numbers using -
Class for addition, subtraction, multiplication and division for 'complex numbers'. Class has 4 functions to perform arithmetic operations. It takes 2 "complex numbers" input from user