用CS编写一段程序来截取数组中的4个字节
时间: 2023-04-07 13:03:08 浏览: 128
C#写的一个截图程序
以下是用C语言编写的截取数组中的4个字节的程序:
```c
#include <stdio.h>
int main() {
int arr[] = {1, 2, 3, 4, 5, 6, 7, 8};
int start_index = 2;
int end_index = 5;
int len = end_index - start_index + 1;
int sub_arr[len];
for (int i = 0; i < len; i++) {
sub_arr[i] = arr[start_index + i];
}
printf("截取的数组为:");
for (int i = 0; i < len; i++) {
printf("%d ", sub_arr[i]);
}
return 0;
}
```
这个程序可以截取数组中从下标为2的元素开始的4个元素,将它们存储在一个新的数组中,并输出这个新数组的内容。
阅读全文