91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c語言中動態數組怎么創建

小億
110
2023-11-29 18:59:12
欄目: 編程語言

在C語言中,可以通過malloc函數或者calloc函數來創建動態數組。

  1. 使用malloc函數創建動態數組:
#include <stdio.h>
#include <stdlib.h>

int main() {
    int *arr;
    int size;

    printf("Enter the size of the array: ");
    scanf("%d", &size);

    arr = (int *)malloc(size * sizeof(int));
    
    if (arr == NULL) {
        printf("Memory allocation failed!\n");
        return 0;
    }

    printf("Enter the elements of the array:\n");
    for (int i = 0; i < size; i++) {
        scanf("%d", &arr[i]);
    }

    printf("The elements of the array are:\n");
    for (int i = 0; i < size; i++) {
        printf("%d ", arr[i]);
    }
    printf("\n");

    free(arr);

    return 0;
}
  1. 使用calloc函數創建動態數組:
#include <stdio.h>
#include <stdlib.h>

int main() {
    int *arr;
    int size;

    printf("Enter the size of the array: ");
    scanf("%d", &size);

    arr = (int *)calloc(size, sizeof(int));
    
    if (arr == NULL) {
        printf("Memory allocation failed!\n");
        return 0;
    }

    printf("Enter the elements of the array:\n");
    for (int i = 0; i < size; i++) {
        scanf("%d", &arr[i]);
    }

    printf("The elements of the array are:\n");
    for (int i = 0; i < size; i++) {
        printf("%d ", arr[i]);
    }
    printf("\n");

    free(arr);

    return 0;
}

無論是使用malloc還是calloc函數創建動態數組,都需要注意釋放內存的操作,可以使用free函數釋放動態數組占用的內存空間。

0
阳江市| 庄浪县| 二连浩特市| 中西区| 南投市| 长阳| 普定县| 桂阳县| 庐江县| 盐池县| 秭归县| 通道| 永康市| 康马县| 通河县| 宾阳县| 嘉峪关市| 丹阳市| 洞口县| 耿马| 伊通| 拉孜县| 汉中市| 皮山县| 涿鹿县| 界首市| 赤城县| 体育| 习水县| 纳雍县| 芦溪县| 沙河市| 临漳县| 巴南区| 大石桥市| 兴城市| 安宁市| 扬中市| 天全县| 正镶白旗| 新余市|