7 lines
86 B
C++
7 lines
86 B
C++
#include <string.h>
|
|
void test() {
|
|
char x[4];
|
|
char *y = "abcd";
|
|
|
|
strcpy(x, y);
|
|
}
|