摘要: #include int main(){ const char *options[] = { "test1", "test2", "test1", "test2", NULL }; int i = 0; while(options[i]){ std::cout<<options[i]<<std::endl; i++; } return 0; } 阅读全文
posted @ 2018-08-31 14:57 友哥 阅读(166) 评论(0) 推荐(0) 编辑