C Language

Extended Ascii Characters List

This blog post explains the extended ASCII characters with their ASCII (American Standard Code for Information Interchange) value in decimal and hex format. Extended ASCII (EASCII  or high ASCII) character encodings are eight-bit or bigger encodings that include the conventional seven-bit ASCII characters as well as extra characters. Table of Extended ASCII characters: The following

Extended Ascii Characters List Read More »

Printable ASCII characters list

This blog post explains the printable characters with their ASCII (American Standard Code for Information Interchange) value in decimal and hex format. You will also learn to find a printable character in a given list of characters. Table of printable ASCII characters: The following table contains the printable characters with their ASCII value in decimal

Printable ASCII characters list Read More »

Non-printable ASCII characters list

This blog post explains the non printable characters with their ASCII (American Standard Code for Information Interchange) value in decimal and hex format. The non-printing characters are characters for content designing in word processors, which are not displayed at printing. Table of non-printable ASCII characters: The following table contains the non-printable characters with their ASCII

Non-printable ASCII characters list Read More »

_Noreturn function specifier in C

C has two function specifiers inline and _Noreturn. In this blog post, you will get the answer to the questions like: What is _Noreturn in C? When to use_Noreturn keyword? Which header file includes the convenience macro noreturn? Or any other. So, without further delay, let’s learn the _Noreturn keyword.   _Noreturn function specifier _Noreturn

_Noreturn function specifier in C Read More »

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 »