Answers for "concantination of a char to a char array in c"

C
1

c add char to char array

char str[1024] = "Hello World";
char tmp[2] = "."; 		//Has to be of size 2 because strcat expects a NULL terminated string

strcat(str, tmp);
Posted by: Guest on June-01-2021
0

how to return array of char in c

char *foo(int count) {
    char *ret = malloc(count);
    if(!ret)
        return NULL;

    for(int i = 0; i < count; ++i) 
        ret[i] = i;

    return ret;
}
Posted by: Guest on December-09-2021

Code answers related to "C"

Browse Popular Code Answers by Language