Update data_and_memory.md

使用多种「基本数据类型」来初始化「数组」的 C 语言版本
This commit is contained in:
WSL0809 2022-12-24 21:57:15 +08:00 committed by GitHub
parent 8733557f00
commit 1131309783
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,6 +88,11 @@ comments: true
=== "C"
```c title=""
/* 使用多种「基本数据类型」来初始化「数组」 */
int numbers[10];
float decimals[10];
char characters[10];
bool booleans[10];
```