top of page
Blog

mattiaducci
Dec 21, 2021
C-Christmas tree
In this article we will create a sparkling Christmas tree in C using ANSI escape sequences and a smart use of pointers
406 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_auto/7407f3_6e3259b7b3cc4908b08d2d8cfef82bfc~mv2.webp)
Damiano Pe
Dec 9, 2021
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...
98 views

Damiano Pe
Oct 23, 2021
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
26 views
bottom of page