Jan 19 · 2 min read · Introduction In C programming, a program becomes meaningful only when it can take input from the user and display output on the screen.This interaction between the user and the program is called Input and Output (I/O). In this blog, we will learn: W...
Join discussion
Nov 13, 2025 · 2 min read · After completing Week 0 with Scratch, Week 1 was like entering a more authentic programming experience the world of C. This week, I began learning how to “talk” to the computer through text-based coding instead of visual blocks. It was exciting, chal...
Join discussion
Sep 5, 2025 · 3 min read · The Timeless Giant When Dennis Ritchie created C at Bell Labs in the early 1970s, he probably didn't envision that his creation would still be powering everything from your smartphone to Mars rovers half a century later. Yet here we are in 2025, and ...
Join discussionJun 20, 2025 · 4 min read · In an era filled with high-level, modern programming languages like Python, Rust, Go, and Swift, it's easy to assume that the C programming language might have lost its relevance. After all, C was developed over 50 years ago, in the early 1970s. Yet,...
Join discussionJun 14, 2025 · 2 min read · How to Set Up VS Code for C and C++ Programming on Windows (Step-by-Step Guide) Want to start coding in C or C++ using Visual Studio Code (VS Code)?You’re in the right place. In this step-by-step guide, I’ll show you how to set up VS Code with MinGW ...
Join discussionApr 4, 2025 · 5 min read · Introduction My journey to C programming began as a result of my deep interest in the field of embedded systems. Growing up, I loved playing with electronic gadgets, whether good or bad ones. I loved building things with them, and it was even more jo...
Join discussion
Mar 21, 2025 · 13 min read · In higher level languages, it is generally assumed that an array is dynamic by default, that you can push, pop, and shift any element in or out of your array with ease. In C the process is not as straight forward, if you want to add an element to you...
Join discussion
Jan 25, 2025 · 3 min read · INTRODUCTION String is basically a sequence of characters or symbols between a pair of double quotes “__” in which the characters of different data types can also be stored in a string. Strings basically stores every character/symbol of the given s...
Join discussion
Dec 24, 2024 · 4 min read · Introduction In my previous article, I shared my journey of learning the basics of C programming over 10 days. I covered the fundamentals such as data types, operators, variables, control structures like if-else statements, and the ternary operator. ...
Join discussion