wangzhengquan
2020-07-25 48ae739d196e8a1ad681e5a54ad992302119bd83
1
2
3
4
5
6
7
8
9
10
11
12
#include "usg_common.h"
#include "usg_typedef.h"
 
void test(char *src, int size) {
    char dest[size];
    strncpy(dest, src, size);
    puts(dest);
}
int main() {
    char *str = "hello";
    test(str, strlen(str));
}