gitbook
gitbook copied to clipboard
12.md 中关于“定义上MAR_VA可以用于数组维数,而Con_va则不行”
在 C99 可以使用变量来定义数组的长度。
// Only C99
int len = 10;
int arr[len];