Posts by silvercrow • 1 point
2 posts
-
0
votes1
answer80
viewsA: How to print words with special characters in c language
Replace the function gets for fgets. The function gets() is unstable, can cause problems. I do not recommend using. #include <stdio.h> #include <locale.h> #include <string.h> int…
canswered silvercrow 1 -
-3
votes1
answer71
viewsQ: How to insert data into the C++ string using the Geany IDE?
I’m studying String types in C. The most common was gets() however it was discontinued because of "buffer overflow". I would like to know what the equivalent function in IDE Geany to gets(). I’ve…