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
404 views
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