Responder
#include <stdarg.h> #include <stdlib.h> #include <string.h> #include <stdio.h> /* Just like strcat(), but allows multiple strings * on the same line. */ char *strvcat(char * s1, char * args, …) { va_list ap; va_start(ap, args); while (args != NULL) { … Sigue leyendo