String Functions in C
String Functions in C

Hello everyone, I am Lovelace, and in this entry we’ll see some String I/O Functions available in the C standard library....

Introduction - Kernel_Development - Part 1
Introduction - Kernel_Development - Part 1

Introduction In this guide I will teach you all how to develop a functional kernel from scratch that can be booted from real hardware and you will learn - i hope - a lot about how computers work and what's the function of an operating system....

Unions in C
C Unions in C

Unions A union is a derived type (similar to a structure) with members that share the same storage space (sometimes the same type of construct needs different types of data).

read more
_Noreturn Functions in C
C _Noreturn Functions in C

_Noreturn functions in C C11 added a second function specifier (in addition to `inline') name `_Noreturn', the purpose of this specifier is to inform the user and the compiler that a particular function will not return control to the calling program when it completes execution, informing the user helps to prevent misuse of the function, and informing the compiler may enable it to make some code optimisations.

read more
Inline functions in C
C Inline functions in C

Inline functions in C Normally, a function call has overhead when being invoked, it takes execution time tp setup the call, pass arguments, jump to the function and return.

read more
Recursion in C
C Recursion in C

Recursion Before we specifically talk about recursion, let's talk about why we might need to use something like recursion.

read more
Variadic Functions in C
C Variadic Functions in C

Variadic Functions in C The word variadic tells us that there is some kind of change, or variation involved, the word variation in a function, means that we are dealing with an unknown number of arguments for a function.

read more

About Me

Hello everyone, I am Lovelace. I am - mainly - a programmer, I started coding when I was 8 with a random HTML video I found on YouTube and since then, I’ve been coding non-stop.

Know More

Social