Source code

Revision control

Copy as Markdown

Other Tools

#include <string.h>
void test() {
char x[4];
char *y = "abcd";
strcpy(x, y);
}