top of page
Blog

Understanding Strict-Aliasing Rules
The strict-aliasing rules allow the compiler to assume that your code does not alias between incompatible types. In this way, the compiler
Damiano Pe
Jan 26, 2022
231 views

A Trick You May Not Know And You Shouldn't Even Use
In this dev tip, we talk about a trick that most likely you don't know and which is now more than anything else a legacy of the...
Damiano Pe
Jan 12, 2022
127 views
![The Difference Between char str* And char str[]](https://static.wixstatic.com/media/7407f3_6e3259b7b3cc4908b08d2d8cfef82bfc~mv2.png/v1/fill/w_192,h_256,fp_0.50_0.50,q_95,enc_avif,quality_auto/7407f3_6e3259b7b3cc4908b08d2d8cfef82bfc~mv2.webp)
The Difference Between char str* And char str[]
When we define str_1, the compiler creates a character array large enough to hold the string "hello world", which is an immutable string...
Damiano Pe
Dec 9, 2021
99 views

Effectively Use extern To Share Global Variables
The cleanest and most reliable way to export a global variable is to put an extern declaration inside a header file. This way, when...
Damiano Pe
Nov 25, 2021
44 views

How To Cast The Result Of malloc
A question that often arises when allocating a new block of memory in C is: should I cast the result of malloc or not?
Damiano Pe
Nov 18, 2021
60 views

Don't Use feof() To Control A File Read Loop
How do you successfully create a file reading loop by checking if you have reached the end of the file? In C the function feof checks for...
Damiano Pe
Nov 10, 2021
48 views

Understand All Declarations With The Clockwise-Spiral Rule
The Clockwise-Spiral Rule is a must-have tool that lets C/C++ programmers quickly understand the meaning of variable or function declaration
Damiano Pe
Nov 3, 2021
124 views

The Meaning Of argc And argv In main()
The input parameters argc and argv are used to send arguments to a program. The program receives arguments thanks to argv, which is a...
Damiano Pe
Nov 2, 2021
58 views

The Difference Between const int * And int *const
An easy way to remember whether it is the pointed value or the address stored in the pointer variable to be constant is to read the...
Damiano Pe
Nov 2, 2021
100 views

The Correct Return Type Of main()
The return type of main must be int, not void. It returns zero to indicate successful termination, otherwise a non-zero value for an...
Damiano Pe
Oct 23, 2021
25 views

Never Use gets To Read A Line
gets is a deprecated function which can cause buffer overflows, use fgets insted.
Damiano Pe
Oct 23, 2021
19 views

How To Remove Trailing Newline Character From fgets Input
Let's say we have to process a text file line by line, and we have to make sure that the line we are processing does not end with a newline
Damiano Pe
Oct 23, 2021
33 views

How To Properly Compare Strings
In C, we can't compare strings with == or !==. We have to use functions declared in the string.h header file. Let's see why and how to do it
Damiano Pe
Oct 23, 2021
27 views

How To Get The Size Of An Array
Sometimes we want to know the size or the number of elements of an array, perhaps because we want to create a for loop that processes...
Damiano Pe
Oct 23, 2021
31 views

Declaration VS Definition: What's The Difference
In C and C ++, we must understand the difference between declaration and definition. Studying these languages, we often hear about them...
Damiano Pe
Oct 23, 2021
43 views
bottom of page