#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;

}

 

相关文章:

  • 2021-05-29
  • 2022-12-23
  • 2021-11-25
  • 2022-12-23
  • 2022-12-23
  • 2021-10-27
  • 2021-12-27
猜你喜欢
  • 2022-12-23
  • 2022-02-03
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
  • 2021-09-30
相关资源
相似解决方案