Category Archives: C++
C++ || How To Pad Left, Pad Right & Pad Center A String Of Fixed Length Using C++
The following is a module with functions which demonstrates how to pad left, pad right, and pad center a string of a
C++ || How To Join & Concatenate An Array/Vector/Container Into A Delimited String Using C++
The following is a module with functions which demonstrates how to join and concatenate an array/vector/container into a delimited string using C++.
C++ || How To Replace A Letter With Its Alphabet Position Using C++
The following is a module with functions which demonstrates how to replace a letter with its alphabet position using C++. 1. Replace
C++ || Simple Palindrome Checker Using A Stack & Queue Using C++
The following is a program which demonstrates how to use a stack and a queue to test for a palindrome using C++.
C++ || How To Sort An Array/Vector/Container With Multiple Sorting Conditions Using C++
The following is a module with functions which demonstrates how to sort an array/vector/container with multiple sorting conditions using C++. The function
C++ || How To Get The Next & Previous Multiple Of A Number Using C++
The following is a module with functions which demonstrates how to get the next and previous multiple of a number using C++.
C++ || How To Round A Number To The Nearest X Using C++
The following is a module with functions which demonstrates how to round a number to the nearest X using C++. This function
C++ || How To Split & Batch An Array/Vector/Container Into Smaller Sub-Lists Of N Size Using C++
The following is a module with functions which demonstrates how to split/batch an array/vector/container into smaller sublists of n size using C++.
C++ || How To Shuffle & Randomize An Array/Vector/Container Using C++
The following is a module with functions which demonstrates how to randomize and shuffle the contents of an array/vector/container using C++. The
C++ || How To Find The Day Of The Week You Were Born Using C++
The following is a program which demonstrates how to find the day of week you were born using C++. The program demonstrated
C++ || How To Get The Day Of The Week & The Week Day Name From A Date Using C++
The following is a module with functions which demonstrates how to get the day of the week and the week day name
C++ || Simple Multi Digit, Decimal & Negative Number Infix To Postfix Conversion & Evaluation
The following is sample code which demonstrates the implementation of a multi digit, decimal, and negative number infix to postfix converter and
C++ || Circular Array – How To Index Into Array As If It Is Circular Using C++
The following is a module with functions which demonstrates how to index into an array as if it is circular using C++.
C++ || How To Split & Parse A String Into Tokens With Multiple Delimiters Using C++
The following is a module with functions which demonstrates how to split and parse a string into substring tokens with multiple delimiters