Damiano PeDec 9, 2021The 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 PeOct 23, 2021Never Use gets To Read A Linegets is a deprecated function which can cause buffer overflows, use fgets insted.