Conditional Statements in C
Conditional Statements in C programming are used to make decisions based on the conditions. These conditions are specified by a set of conditional statements having… Read More »Conditional Statements in C
Conditional Statements in C programming are used to make decisions based on the conditions. These conditions are specified by a set of conditional statements having… Read More »Conditional Statements in C
In C programming, Strings are defined as an array of characters or a sequence of characters terminated with a null character ‘\0‘. When the compiler… Read More »Strings in C
You may encounter situations, when a block of code needs to be executed several number of times. In general, statements are executed sequentially: The first… Read More »Loops in C
The number systems give us different ways to represent numbers. It defines a set of values to represent a quantity. The systems that are interesting… Read More »Number Systems – Binary, Hex, Decimal
The fight on C vs Embedded C has been going on for quite some time. First off—Yes, there really IS something officially called “Embedded C”,… Read More »C vs Embedded C
In the previous post, we tried understand what a volatile keyword in C/C++ is. In this post, we will have a look at using the… Read More »How to use volatile qualifier with structure?
In this post we will explore Functions in C. We will look at what functions are and how they make our lives easy. Let’s say… Read More »Functions in C
The proper use of C’s volatile keyword is poorly understood by many programmers. This is not surprising, as most C texts dismiss volatile in a… Read More »Understand the Volatile Keyword in C/C++
What are pointers really? How do they work? And most importantly how are they useful?! In C programming, pointers point to locations. Locations in memory.… Read More »Pointers in C/C++
Variables are an essential aspect of any programming language, including C. They allow us to store and manipulate data within our programs. In this post,… Read More »Variables in C and Their Relation to Memory Locations