void test2() { char string[10], str1[10]; int i; for(i=0; i<10; i++) { str1 = 'a'; } strcpy( string, str1 ); }
void test2() { char string[10], str1[10]; int i; for(i=0; i<9; i++) { str1[i] = 'a'; } str1[9] = '\0'; strcpy( string, str1 ); }
扫描二维码,关注牛客网
下载牛客APP,随时随地刷题