Category Archives: Basic

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 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 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 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++ || 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 Check If A String Starts & Ends With A Certain String Using C++

The following is a module with functions which demonstrates how to determine if a string starts and ends with a certain substring

C++ || How To Read An Entire File Into A String & Write A String To A File Using C++

The following is a module with functions which demonstrates how to write a string to a file and read an entire file

C++ || How To Replace All Occurrences Of A String With Another String Using C++

The following is a module with functions which demonstrates how to replace all occurrences of a substring with another substring using C++.

C++ || How To Check If A String Is Empty Or Only Contains Whitespace Using C++

The following is a module with functions which demonstrates how to determine whether a string is empty, or consists only of white-space

C++ || How To Convert A String To Upper and Lower Case Using C++

The following is a module with functions which demonstrates how to convert a string to all upper and lower case using C++.

C++ || How To Remove All Whitespace From A String Using C++

The following is a module with functions which demonstrates how to remove all whitespace from a string using C++. 1. Remove All

C++ || How To Get The File Path, File Name & File Extension From A Path Using C++

The following is a module with functions which demonstrates how to parse a file path, file name and file extension from a