C Language

strcpy in C

In this blog post, you will learn what is the strcpy() and how to use the strcpy() function in C to copy strings with the help of programming examples.   What is strcpy in C? The strcpy function copies the string pointed to by src (including the terminating null character) into the array pointed to […]

strcpy in C Read More »

memccpy in C

In this blog post, you will learn about the memccpy in C with the help of programming examples. The memccpy function copies characters from the object pointed to by src into the object pointed to by dest. The copies of characters are stopped after any of the next two conditions are satisfied: 1. The first

memccpy in C Read More »

logical operators in C

In this blog post, you will learn equality and logical operators in C programming with the help of example code. So let’s first understand what logical operators are. The logical operators perform logical operations on given expressions. They use to evaluate two or more conditions. The result of the logical operations yields 1 or 0

logical operators in C Read More »

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 »