码迷,mamicode.com
首页 > 编程语言 > 详细

字符数组优雅遍历

时间:2018-08-31 15:48:06      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:数组   字符数组   ++   遍历   const   iostream   null   turn   return   

#include <iostream>

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;

}

 

字符数组优雅遍历

标签:数组   字符数组   ++   遍历   const   iostream   null   turn   return   

原文地址:https://www.cnblogs.com/youge-OneSQL/p/9565843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!