The switch-case construction, or switch statement, provides your code with a decision tree that both easy to read and to debug. This construction is a bit daunting for the beginner, but becomes more familiar as you use it. It’s not without its quirks.
Continue reading
Author Archives: dgookin
Creating Your Own Environment Variables
Programs use environment variables, thanks to the getenv() function shown in last week’s Lesson. They can also create their own environment variables, reset variable values, and remove variables.
Continue reading
Peering into the Environment
The operating system’s environment provides temporary storage for variables, settings, and options. These values are easily accessible from any C program. One of the first posts I made on this blog was about accessing the environment. Time to revisit.
Continue reading
Positive Negative Positive Negative – Solution
This month’s Exercise presents what I often refer to as a code “toggle.” Many paths lead to a solution.
Continue reading
A Nifty Little Test
When I teach C programming, I’m careful to admonish beginners about the difference between the = (assignment) and == (is equal to) operators. Yet there are times when these two operators collaborate.
Continue reading
Positive Negative Positive Negative
Difficulty: ★ ☆ ☆ ☆
One of my pastimes is watching math videos. I was a terrible math student, but I enjoy the videos. Occasionally a concept is presented that I can program in C. This month’s Exercise covers one of these concepts.
Continue reading
The C23 Deprecated and Removed Collection
As with all language updates, things change. Some of these items are deprecated while others are outright removed. Here’s the list.
Continue reading
New C23 Language Features
While other programming languages seem to improve and update in great leaps, C moves at a glacial pace. The C23 upgrade offers a few new and exciting features, but nothing I would call impressive or awesome.
Continue reading
Initializing Arrays in C23
You can initialize an array in the C programming languages in three ways: Not at all, only some elements, or all of the elements. Some compilers offer a fourth way, which initializes all elements to the same value. With the C23 standard, yet another way to initialize an array is possible.
Continue reading
The swap() Function – Solution
This month’s Exercise is to code a function that swaps two variables. The challenge really isn’t to swap the variables, but to figure out how to code a function that does so.
Continue reading