Tagged Questions

0
votes
8answers
230 views

strcat problem in C, segmentation fault

Hello everyone! i am new to C and recently i have a problem with a strcat function. I have an array of arguments defined like: #define MAXARGS 10; char *argvalues[MAXARGS]; All i want is to …
1
vote
7answers
393 views

Why does MSVC++ consider “std::strcat” to be “unsafe”? (C++)

When I try to do things like this: char* prefix = "Sector_Data\\sector"; char* s_num = "0"; std::strcat(prefix, s_num); std::strcat(prefix, "\\"); and so on and so forth, I get a warning warning …