调试发现时间写的一样NB代码
test.c
int add(string); int main() { char* p = "11222"; add(p); return 0; } int add(string) { return 0; }