當前位置:成語大全網 - 書法字典 - C++字典存儲數組。

C++字典存儲數組。

舉個例子,這裏的str是壹個二維數組。我手動輸入10個字符串並存儲在數組中,然後用二維數組的行指針輸出。

# include & ltstdio.h & gt

# include & ltstring.h & gt

void main()

{

char str【10】【20】;

int I;

for(I = 0;我& lt10;i++)

gets(*(str+I));

for(I = 0;我& lt10;i++)

puts(*(str+I));

}