HTML & CSS Web Design
Html Css > Code Examples
A nested ordered list
C Power of a Number using Pow Function -
C Programming Code to input two numbers from user and find their power using pow() function. How to find power of a number in c. How to use pow() function in C programming.
C Sort Set of Strings in Alphabetical Order -
Program to sort set of strings in alphabetical order using strcmp(). Program will accept set of 5 strings & sort them using 'strcmp' library function and "Print the Result" on the screen.
C++ Language Code to Merge Two Arrays -
Program ask to the user to enter array 1 and 2 size, then ask to enter array 1 and 2 elements, to "merge or add" to form new array, display the result of the added array or merged array
Strrchr searches the string in reverse order -
'StrrChr' is similar to the function 'StrChr', the only difference is that it searches the string in "Reverse Order", would have understood why we have extra r in 'strrchr', yes you guessed it
C Program Code Counts Number of Digits -
C Program to count number of digits without using loop. The second logic uses logarithms to count number of digits in a given integer. Total number of digit in an integer is equal to
C++ Find kth Largest Element in Sequence -
A Function to build max heap from the initial array by checking all non-leaf node to satisfy the condition. And build "max-heap" k times, extract the 'maximum' and store it in the end
Swapping numbers Function Call by Value -
Before we discuss function call by value, lets understand the terminologies that we'll use while explaining this: Actual parameters: The parameters that appear in function calls and
C Programming Codes to Quick Sort Array -
Programming code load some random values into the array. Print the original array. Print the 'quicksorted' array. Sort everything in between 'low' 'high'. Compare value and find