main.cpp
来自「C++ Source code from a tutorial」· C++ 代码 · 共 30 行
CPP
30 行
#include <iostream>
#include <stdlib.h>
using namespace std;
int main(int argc, char *argv[])
{
int const Permanent[5] = { 1, 2, 3, 4, 5 };
cout << Permanent[1] << endl;
const int NonConstant[5] = { 1, 2, 3, 4, 5 };
const int OtherList[5] = { 10, 11, 12, 13, 14 };
//OtherList = NonConstant;
cout << OtherList[1] << endl;
typedef int A[5];
typedef const A CA; // type is 憫array of 5 const int拻
CA x = {1,2,3,4,5};
CA y = {2,3,4,5,6};
y = x;
system("PAUSE");
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?