摘要:
1 #include <cstdio> 2 3 using namespace std; 4 5 void seq_to_tree(char seq[]) { 6 puts("seq_to_tree:"); 7 char tmp[20]; 8 printf("sizeof(seq): %d\n", sizeof(seq)); 9 printf("siezof(tmp): %d\n", sizeof(tmp));10 }11 12 int main() {13 char seq[10];14 puts("main( 阅读全文