亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
河津市| 怀安县| 甘谷县| 闽侯县| 宣恩县| 北海市| 镇平县| 浦江县| 北辰区| 宁陕县| 广元市| 龙州县| 嘉祥县| 天祝| 兴业县| 调兵山市| 隆德县| 宜章县| 从化市| 南溪县| 商南县| 苗栗市| 时尚| 湟中县| 台南县| 峨边| 南投县| 麻江县| 海原县| 封丘县| 汾西县| 东乡族自治县| 平遥县| 农安县| 合作市| 永春县| 固阳县| 盐源县| 上饶市| 定兴县| 台安县|