You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include <memory.h>
- #include <stdlib.h>
- #include <stdio.h>
-
- int main(void) {
- int buffer[16];
- for (int i = 0; i < 32; i++) {
- buffer[i] = i;
- }
- }
|