wangzhengquan
2020-07-25 8ec1d776751f62c43335d36c3427dc1ab2d84a61
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));
}