All Posts

330 articles to explore

CC Programming

Part 8: File Handling in C a detailed guide/tutorial

5 min read

Learn how to interact with files in C! This detailed guide covers the essential aspects of file handling, including opening, reading from, writing to, and closing files, enabling your programs to work with persistent data.

Read article
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