A standard C function that appends a copy of the source string to the destination string.
Possible Duplicate: Why does MSVC++ consider “std::strcat” to be “unsafe”? (C++) Here is my code: char sentence[ 100 ] = ""; char *article[ 5 ] = { "…
c++ visual-c++ strcatI'm trying to use pointers and strcat from C. This is part of my learning process. The idea is the …
c pointers strcatI'm try to concatenate to char * rv with the result of a function call that will return an int. fib() …
c casting int concatenation strcatHere's my program: #include <stdio.h> char *ft_strcat(char *dest, char *src) { int i; int k; i = 0; …
c arrays strcatI have a function in C where i am trying to get strings from two different locations (unknown size, could …
c cstring strcat