Php Programming Code Examples
Php > Graphics Code Examples
Svg-php diagram
C++ Byte Alignment in a struct Algorithm -
Get size of the current type. Align depens on the next type and also alignment defined by #pragam pack(#). Offset will be minimum of this size. If the "size of next type" is less than
Find Nth Fibonacci Number Use Recursion -
C Program to find the nth 'fibonacci number' using recursion. Program prints the fibonacci of a number. In fibonacci series, each number is the sum of the 2 preceding numbers. 0, 1, 1,
C Code to Illustrate the Concept of Unions -
C Define the union named number with two variables j1 and j2. Define the union variable x. Take the value of two variables using dot operator(i.e. x.j1, x.j2) as input. Print values
C Language Copy the Strings Use Pointers -
C program 'Copy one String to another' string using loop. Input string from user and store it to some variable say "text1". Declare another variable to Store copy of first string in "text2".
Search All Occurrences of a Word in String -
C program to search all occurrences of a word in given string using loop. Input string & word from user. Run a Loop from 'starting index' of string to Length of string - word length. Enter
Read and write Strings Printf() and Scanf() -
Compare 2 strings, 'Concatenate Strings' and copy one string to another & perform various 'string manipulation operations'. We perform such operations using 'pre-defined' functions
Accept Two Integers and Check if They are -
Take the two integers as input and store it in the variables x & y respectively. Using if, else statements check if x is equal to y. If they are equal, then print the output as "x and y are...
Check whether Graph is a Bipartite using a -
A utility function to check if the current color assignment is safe for "vertex v". A Recursive Utility Function to solve m coloring problem. This function solves the m Coloring problem