Callback Function in C Programming

Callback Function in C

This article is the continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. It aims to provide easy and practical examples for understanding the C program. In our last article, we have seen the Types of pointers in C programming. If you are learning or working on any programming … Read more

Difference Between Macro and Inline Function in C

Macro vs Inline

This article is the continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. It aims to provide easy and practical examples for understanding the C program. In our last article, we have seen the Preprocessor in C programming. In this tutorial, we are going to discuss the Macro vs … Read more

Bitwise Operators in C

Bitwise Operators in C Interview Questions

This article is the continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. It aims to provide easy and practical examples for understanding C programming. In our last tutorial, we discussed the Operators in C programming. In that, we left only bitwise operators. So in … Read more

Union in C Programming

union in c

This article is the continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. It aims to provide easy and practical examples for understanding the C program. In our last article, we have seen the Structures in C Programming. In this article, we will see Union in C programming. What … Read more

Understanding the container_of Macro in Linux kernel

Understanding of container_of macro in Linux kernel

The Linux kernel contains a very useful macro named container_of. This article is about understanding the container_of macro in Linux kernel. This article includes a simple program that illustrates how this macro is used and explains why it is so useful. You can also read flexible array members in c, macro vs inline, and embedded … Read more

Preprocessor in C Programming

Preprocessor in C

This article is the continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. It aims to provide easy and practical examples for understanding the C program. In our last article, we have seen the Functions in C programming. In this article, we are going to explain Preprocessor in C … Read more

Introduction to C Programming

Introduction to C programming

This article is the first part of the Series on C Programming Tutorials and carries the discussion on C language programming and its implementation. The aim of this series is to provide easy and practical examples that anyone can understand. In this article, we will see an introduction to C programming. Introduction to C Programming Programming is … Read more

Functions in C (Call by value, Call by reference & Recursive Function)

functions in c example

This article is the continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. It aims to provide easy and practical examples for understanding the C program. In our last article, we have seen the Storage class in C programming. In this article, we are going to explain … Read more

Variables in C – Complete C Programming Guide

Variables in C Programming

This article is the continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. In our last tutorial, we have seen Datatypes in C programming. In this article, we are explaining one of the basic concepts of the C program which is variables in C Language. It aims to … Read more

Jump Statements in C – break, continue, goto, return in C Programming

Jump statements in C

This article is the continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. In our last tutorial, we discussed loops in C programming like for loop, while, and do-while loop in C programming. In this article, we are going to see Jump statements in C (break, continue, … Read more

Table of Contents