C++ Programming Code Examples
C++ > Algorithms Code Examples
Binary Search Tree
Print some General File info in C program -
Filename, device, inode, protection, number of hard links, user ID of owner, group ID of owner, device type, total size, blocksize for filesystem I/O, number of blocks allocated,
Code Checks Valid Triangle with Nested If -
Despite of easiness, the above code is messy and less readable. printf("The Triangle is not valid."); statement is unnecessarily repeated for various conditions. You can cut the extra
Checks If an Integer is Odd or Even In C++ -
A formal definition of an even number is that it is an integer of the form 'n = 2k', where k is an integer; it can then be shown that an odd number is an integer of the form "n = 2k + 1".
C Language Calculating the Typing Speed -
Your time has started. Start typing. Hit Esc when done. Erase previous character instead of cursoring. Eliminate a special character that is printed for Esc. A Backspace followed
Finds Factorial of Number using Recursion -
Declare recursive function to find factorial of a number. First let us give a meaningful name to our function, say fact(). Factorial Function accepts an integer input whose factorial is to
C Program Code to Sort array of Structure -
C code accept records of the different states using array of structures. A structure should contain Char state, population, literacy rate, & income. Display the State whose Literacy
Counts Occurrences of Character in String -
Program count all occurrences of a character in string using Loop. Input a string, store it in some variable "str". Input character to search occurrences and store it in some variable say
Code Parse the Command Line Arguments -
C program is an example of how to parse the command line arguments. It sets up all the global variables for a real program and it just doesn't have any body. Loop for each option.