Tagged Questions
The strcat-s tag has no wiki summary.
2
votes
7answers
1k 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 ...
0
votes
8answers
1k views
strcat problem in C, segmentation fault
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 concatenate the last ...