Microcontroller Embedded C Programming Lecture 39| Use cases of ‘static’ with functions
Use cases of 'static' with functions In this article, let's see how static keywords can be used with functions. So, we have two files. A main.c and…
Use cases of 'static' with functions In this article, let's see how static keywords can be used with functions. So, we have two files. A main.c and…
Use cases of 'static' with variables In this article, let's see some more use cases of static storage class specifiers. A 'C' project can be a…
Storage class specifiers in 'C' Type Storage Classes in 'C' Language decides: Scope of a variable Visibility of a variable or function Lifetime of a variable…
Address of variables contd. When working with variables in C, it's essential to grasp the concept of memory addresses and how they can be stored in variables…
Address of variables In this article, let's learn about the address of variables. Consider the variable named myData. When you use the notation &myData, it gives…
Summary of local and global variables In the previous article, we discussed the variable scopes. Let's see the Summary of local and global variables. Local and global…