wangzhengquan
2020-07-27 554529bb69cd610e83db2c9a80b4f36f5225d80f
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));
}