"Hello world"作为静态字符串实际上存储在数据区,但写程序的人不知道这个地址,而程序本身知道。当某一函数以{ char p[] = "Hello world"; ...}方式使用此静态字符串时,实际上相当于: char p[12]; strcpy(p, "Hello world"); ... Read More
//namesp.hnamespacepers{constintLEN=40;structPerson{charfname[LEN];charlname[LEN];};voidgetPerson(Person&);voidshowPerson(constPerson&);}namespacedebt... Read More