C++ program to concatenate strings
CONCATENATION OF TWO STRINGS USING C ++ PROGRAM # include < iostream> # include < string > using namespace std ; int main () { char str1 [ 50 ], str2 [ 35 ]; cout << "Enter string str1;" ; cin >> str1 ; cout << "Enter string str2:" ; cin >> str2 ; strcat ( str1 , str2 ); cout << "strcat (str1, str2 ) : " << str1 ; system ( "pause" ); return 0 ; } --------------------------------------------------------------------------------------------- Write a C++ program to Make Simple calculator Write a C++ program to arrange 10 numbers in ascending order Write a C++ program to calculates the following equation for entered numbers (n, x). 1+ (nx/1!) - (n(n-1)x^2/2!) Write a C++ program to 1. Initialize Matrices 2. Print Matrices 3. Multiply Matrices 4. Transpose of 2nd Matrix 5. Move Row and Column of 2nd Matrix 6. Quit Write the C++ program for processing of the students structure Writ...