Programming Languages Series
October 2, 2023
1. Introduction Welcome to our Programming Languages Series! In this series, we’ll explore various programming languages, understand their purposes, provide code examples, and discuss when to use each one.
Read More
How to get the Length of an Array in C
June 14, 2022
There isn’t really a standard way to get the length of array in C.
Read More
How to Sum the Two Lowest Positive Integers in C++
June 7, 2022
The challenge Create a function that returns the sum of the two lowest positive numbers given an array of minimum 4 positive integers.
Read More
How to Find the Shortest Word in C++
May 27, 2022
The challenge Simple, given a string of words, return the length of the shortest word(s).
Read More
How to Square Every Digit in C++
May 26, 2022
The challenge You are asked to square every digit of a number and concatenate them.
Read More
How to Count Vowels in C++
May 25, 2022
The challenge Return the number (count) of vowels in the given string.
Read More