C Language

C Alignment specifier: _Alignas

In this blog post, you will learn the alignment specifier _Alignas in C and their concept. You will learn how to use _Alignas alignment specifiers in your code and their effect. We also see some programming examples to understand the alignment specifiers. So first let’s understand what is the meaning of alignment. We know that […]

C Alignment specifier: _Alignas Read More »

What is Function Specifiers in C

In this blog post, you will learn the Function Specifiers in C and their concept. You will learn how to use function specifiers with function and their effect on them. We also see some programming examples to understand the qualifiers. So first let’s understand what is function specifiers.   What is Function Specifiers in C?

What is Function Specifiers in C Read More »

Stringizing operator (#) in C

In this blog post, you will learn about the stringizing operator (#)  and it uses in C programming. Also, you will see some C programming examples of stringizing operators (#). So let’s first understand what is stringizing operator (#) in C?   What is the “stringizing” operator (#)? The  “stringizing” operator (#) converts macro parameters

Stringizing operator (#) in C Read More »

Merge Sort Algorithm

This blog post explains the merge sort algorithm and its implementation using the C programming language. So before writing the C code for the merge sort let’s first understand the merge sort algorithm. What is Merge Sort Algorithm: Merge Sort is one of the most popular sorting algorithms and it is an example of the

Merge Sort Algorithm Read More »