栈  0.1
数据结构_第3章
test.cc
Go to the documentation of this file.
1 
12 #include <iostream>
13 
14 int main(int argc, char const *argv[])
15 {
16  int i = 0;
17  while (i < 0xFFFF)
18  {
19  std::cout << "Line " << i++;
20  std::cout << '\r';
21  }
22  return 0;
23 }
main
int main(int argc, char const *argv[])
Definition: test.cc:14