_Atomic keyword in C (or _Atomic type qualifier in C)
C11 supports four “type qualifiers” const (C89), volatile (C89), restrict (C99), and _Atomic (C11). So_Atomic is a type qualifier. In this blog post, you will learn what _Atomic keyword is and when you should use it. So let’s get started. _Atomic keyword: The _Atomic keyword is introduced in C11. It is not only used as […]
_Atomic keyword in C (or _Atomic type qualifier in C) Read More »