The mini-project “Calendar in C” is a console application using the C programming language. This project compiles in Code Blocks with the GCC compiler. In this console application, you can check the date for the given month and year. In this project, we are using Zeller’s Congruence. Zeller’s congruence is…

This blog post will teach you how to convert an int to a string in C. The itoa() function (non-standard function) converts an integer value to a null-terminated string using the specified base (behavior depends on implementation). As itoa() is not a standard function, in my recommendation, it is best…

In this blog post, you will learn to concatenate two strings in C with and without the C library functions. C string is a sequence of characters terminated with a null character ‘\0’. Concatenating two strings means joining one string to another string. For example, Input: string1 =”Aticle”, string2=”World” Output:…

In this blog post, you will learn what is linear search and how to implement linear search in C with the help of programming examples. So let’s first understand the linear search.   What is Linear Search? Some people also call it sequential search. It is a method for finding…