gitbook icon indicating copy to clipboard operation
gitbook copied to clipboard

一本关于C语言的实用书

Results 1 gitbook issues
Sort by recently updated
recently updated
newest added

在 C99 可以使用变量来定义数组的长度。 ```c // Only C99 int len = 10; int arr[len]; ```