📄 main.cpp
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -