Programming Languages Series
1. Introduction
Welcome to our Programming Languages Series! In this series, we’ll explore various programming languages, understand their …
Read Article →6 articles about c++ development, tools, and best practices
Welcome to our Programming Languages Series! In this series, we’ll explore various programming languages, understand their …
Read Article →There isn’t really a standard way to get the length of array in C. This means you need to do some additional work to achieve getting the length …
Read Article →Create a function that returns the sum of the two lowest positive numbers given an array of minimum 4 positive integers. No floats or …
Read Article →Simple, given a string of words, return the length of the shortest word(s).
The string will never be empty and you do not need to …
Read Article →You are asked to square every digit of a number and concatenate them.
For example, if we run 9119 through the function, 811181 will come …
Read Article →Return the number (count) of vowels in the given string.
We will consider a
, e
, i
, o
, u
as vowels for this challenge (but not y
).
The …
Read Article →