Someone
public text v1 · immutable#include <stdlib.h>
#include <string.h>
char *q;
char *test(void)
{
char *p = malloc(100);
strcpy(p, q);
return p;
}
#include <stdlib.h>
#include <string.h>
char *q;
char *test(void)
{
char *p = malloc(100);
strcpy(p, q);
return p;
}