中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
巩留县| 长海县| 垣曲县| 枣阳市| 卢龙县| 东乌| 荔浦县| 政和县| 城口县| 宁阳县| 含山县| 澜沧| 莲花县| 广汉市| 乌兰县| 洞头县| 武宁县| 辰溪县| 恩施市| 绿春县| 开远市| 平南县| 阜康市| 镇巴县| 云南省| 沅江市| 曲阜市| 丰都县| 延吉市| 化德县| 呈贡县| 北海市| 鹤岗市| 金阳县| 南京市| 海晏县| 上犹县| 观塘区| 吉林市| 六枝特区| 应用必备|