strcat
Why is “strcat” considered as “unsafe”? [duplicate]
This question already has answers here: Closed 11 years ago. Possible Duplicate: Why does MSVC++ consider “std::strcat” to be “unsafe&rdqu开发者_Python百科o;? (C++)[详细]
2023-03-01 00:53 分类:问答strcat concat a char onto a string?
Using GDB, I find I get a segmentation fault when I attempt this operation: strcat(string,¤tChar);[详细]
2023-02-07 03:38 分类:问答I just can't figure out strcat [duplicate]
This question already has answers here: How do I concatenate const/literal strings in C? (17 answers) Closed 4 years ago.[详细]
2023-02-05 11:57 分类:问答g++ + strncat: might overflow destination buffer
I ne开发者_JAVA技巧ed to include an C function in my C++ program, when compiling the Code with g++ I get the following warning:[详细]
2023-01-30 08:47 分类:问答strcat segmentation fault
The second call to strcat here is generating a segmentation fault, why? #include <unistd.h> #include<stdio.h>[详细]
2023-01-27 07:09 分类:问答How does return of pointer work in strcat()
Hey guys I\'m trying to figure how pointers are returned by strcat(), so I tried implementing my own strcat() to see how it works. The following is my code for mystrcat(), which works like the real st[详细]
2023-01-18 18:55 分类:问答What is the scope of a char*[] in C?
I have some code that does the following: while(some condition) { char *line[WORDLEN]; //do stuff to line, including strcat(line, \"words\")[详细]
2023-01-16 03:51 分类:问答Segmentation Fault with strcat
I\'m having a bit of a problem with strcat and segmentation faults. The error is as follows: Program received signal EXC_BAD_ACCESS, Could not access memory.[详细]
2023-01-08 01:33 分类:问答strcat implementation
I tried to implement the strcat by myself, and I found the strcat implementation from Wiki like this......but when I use it, there is segmentation fault.[详细]
2022-12-23 11:53 分类:问答C char to string (passing char to strcat())
my problem is in convert a char to string i have to pass to strcat() a char to append to 开发者_如何学JAVAa string, how can i do?[详细]
2022-12-21 22:07 分类:问答