All Posts

321 articles to explore

CC Programming

Part 7: Structures and Unions in C

5 min read

Learn how to create your own custom data types in C using structures to group related data of different types and unions to store different data types in the same memory location.

Read article
CC Programming

Part 5: Arrays and Strings in C

5 min read

Discover how to work with arrays to store collections of data and understand how strings are handled as character arrays in C. Learn about declaration, initialization, accessing elements, and basic string manipulation techniques.

Read article
CC Programming

Part 4: Functions in C: Definition and Usage

5 min read

Learn how to define and use functions in C to create modular, reusable, and organized code. This part of our Beginners guide covers function definition, declaration, calling, and different types of functions.

Read article