C++ Programming Code Examples
C++ > Strings Code Examples
Program to Find the Length of a String
Write inline assembly language code in C -
Adding two numbers using inline assembly language. Assembly language can be written in c. C supports assembly as well as higher language features so called "middle level...
Compare two Strings in the C++ language -
Function will return 0, if the strings are equal; return 'negative value', if "string1 is less" than string2 and return "positive value" if string1 is greater than string2. This function 'compares'
Finds Size of the Largest Independent Set -
Program to find largest independent set in a binary tree. In graph theory, an independent set or stable set is a set of vertices in a graph, no two of which are 'adjacent'. That is, it is a
Calculates Sum of Odd and Even Numbers -
C program code find the sum of odd and even numbers from 1 to N. Take Number N upto which we have to find the sum as input. Using for loop take the elements one by one from 1
How to Use Constructors in C++ language -
Read the comments in the following program to understand each part of the program. This is a "default constructor" of the class, you do note that it's name is same as class name and
Convert the Content of File to UpperCase -
If the status returned is 0 then the coversion of file content was completed successfully. If the status returnes is -1 then the conversion of file content was not done. Convert the file
Finds First Occurence of the any Character -
Program takes 2 strings as input and finds the first occurence of the any character of String2 in String1 & also its position. Take two strings as input. Compare both the strings using two
C++ Programming Code to Reverse String -
To 'reverse a string' in C++ programming, ask to the user to 'enter a string', make a variable say temp of char type "start Swapping". Place First Character of the String in temp and Last