?? test4_5.txt
字號:
#include <stdio.h>
#include <stdlib.h>
#define BIGNUM 5000
void index_to_the _moon(int ary[ ]);
int main(void)
{
int intary[10];
int j;
index_to_the_moon(intary);
exit(EXIT_SUCCESS);
}
void index_to_the_moon(int ary[ ])
{
int j;
for(j=0;j<BIGNUM;++1)
ary[j]=j;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -