Implement a function in C that takes a string "Hey" and converts it to "[H][e][y]" with no return value
Sigiloso
#include #include #include void foo( char ** s) { int i, j, xLen; char *x; xLen = 3 * strlen(*s); x = (char *) malloc(xLen*sizeof(char) + 1); memset(x, '\0', strlen(x)+1); for (i=0, j=0; i