C++ Programming Code Examples
C++ > Arrays and Matrices Code Examples
programs to find transpose of a matrix with function and without function
C++ Searching Using Self-Organizing Lists -
"Self-Organizing" List updates on the basis of 'last searched item'. The sequential searching approach is used. In general search, 80% time only specific 20% of data is accessed. Sample
C++ Template to Gets Maximum Number -
Templates are a feature of the C++ language that allows functions and classes to operate with generic types. A "simple C++ template" behaves same as normal function except the
Conditional Operator Check Even or Odd -
C programming code to input a number and check whether number is even or odd using Conditional/Ternary operator ?:. Check even or odd numbers using conditional operator...
C Check the Number is Armstrong number -
C Program to input a number from user and check whether given number is Armstrong number or not. Armstrong number is n-digit number that is equal to the sum of the nth...
Program convert UpperCase to LowerCase -
C Programming code to convert upper case to lower case or lower case to upper case depending on the name it is invoked with as found in argument. Enter a string in upper...
C Programs Calculates the Simple Interest -
Program calculates the simple interest given the principal amount, rate of interest & time. The Formula to calculate the Simple interest is: simple_interest = (p * t * r) / 100 where p...
Use Infinite While Loops in C++ Language -
This Loop would never end as 'decrementing' the value of i which is 1 so the condition i<=6 would never return false. A "While Loop" that never stops is said to be "Infinite While Loop",
Finds Nodes Which are at Max Distance in -
Find nodes which are at maximum distance in binary tree. Create a new node with the data from the user. Check for root node and then create it. Search for the appropriate position