C tutorial: Organize your data using structs

What software developers don’t emphasize much is the planning aspect when it comes to development. I see questions online asking how it’s possible to code 8 hours a day. The truth is that we don’t really code 8 hours a day. Most of the time we are planning, organizing, and debugging. Coding is usually the easy part of the job. Planning, testing, and integrating is the hard part.

Organizing your data is essential to making all of that easier and simpler for you. After all, data is very central to every program. In essence, all a program really does is process data.

So in this video, I’m going to talk about the most common way you’ll find data organized in your code. This tutorial will be specifically about structs in C, but you will definitely find analogous concepts in other programming languages. Let’s get into it!

In this video, you’ll learn
-The role of data in programs
-How to organize data using structs
-When to use structs

Hope this helps!
-Henrik