What is boolean in C?

Does C programming language support boolean type? If you are reading this article, I believe this question has also come to your mind what the boolean is, How to use bool in C, ..etc. Don’t worry in this post I will explain the C boolean with the help of programming examples. But before going into […]

What is boolean in C? Read More »

Difference between Definition and Declaration (Declare vs Define in C)

If you are learning “C programming“, it is very important to understand the difference between definition and declaration. Now you are thinking about why important to know the difference between declaration and definition, then the reason behind is that if you don’t understand the difference, you’ll run into weird linker errors like “undefined symbol data”

Difference between Definition and Declaration (Declare vs Define in C) Read More »

Declaration and definition (C/C++)

When we started learning the programming language, we faced two fancy words declaration and definition. In the beginning, most programmers avoid understanding these two words’ declaration and definition. Initially, this two-term declaration looks very confusing. But after practicing the programming problems you are not only able to understand this concept able also able to understand

Declaration and definition (C/C++) Read More »

What is HTML Editor?

If you want to learn HTML but don’t know where to write the HTML code, then you have come to the right place. In this blog post, we will discuss the HTML editor and teach you to how you can learn HTML Using Notepad or TextEdit. “Any fool can write code that a computer can

What is HTML Editor? Read More »

_Generic keyword in C11

_Generic keyword in C

In this tutorial, you will learn the concept of  _Generic keyword with a programming example. It will also help you to write a program on how to check a variable is const qualified in C. So let’s first understand what _Generic keyword ( _Generic selection ) is. _Generic keyword (since C11): Using the _Generic keyword,

_Generic keyword in C Read More »