Answers for "how to store char in array in c"

C
0

return char array in c

char * createStr() {

    char char1= 'm';
    char char2= 'y';

    char *str = malloc(3);
    str[0] = char1;
    str[1] = char2;
    str[2] = '';

    return str;

}
Posted by: Guest on March-21-2021
0

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

Code answers related to "how to store char in array in c"

Code answers related to "C"

Browse Popular Code Answers by Language