Top "Strcat" questions

A standard C function that appends a copy of the source string to the destination string.

Convert integer to be used in strcat

I'm trying to open different files by having a for loop increment a counter, then appending that counter to the …

c casting char strcat
Why is “strcat” considered as “unsafe”?

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++ strcat
c strcat with pointer

I'm trying to use pointers and strcat from C. This is part of my learning process. The idea is the …

c pointers strcat
Most efficient way to use strcat() with a string and int?

I'm try to concatenate to char * rv with the result of a function call that will return an int. fib() …

c casting int concatenation strcat
strcat in c program is not working

#include<string.h> #include<stdio.h> void main() { char *str1="hello"; char *str2="world"; strcat(str2,…

c strcat string.h strcat-s
C: "zsh: abort" error

Here's my program: #include <stdio.h> char *ft_strcat(char *dest, char *src) { int i; int k; i = 0; …

c arrays strcat