#c-programming
Read more stories on Hashnode
Articles with this tag
Introduction The C preprocessor is a tool that processes your code before it is passed to the compiler. The main purpose of the preprocessor is to...
Introduction Most of the memory you've been using has been stored on the stack. A stack is an area of memory where local variables and functions are...
Introduction To understand how static libraries work let's first look at the compilation process of a file in C programming. Compilation is when code...
A function in C is a block of code that performs specific tasks when called. They are also called subroutines or procedures. They are used to perform...