C 語言基礎(chǔ)教程

C 語言流程控制

C 語言函數(shù)

C 語言數(shù)組

C 語言指針

C 語言字符串

C 語言結(jié)構(gòu)體

C 語言文件

C 其他

C 語言參考手冊

C程序結(jié)構(gòu)體動態(tài)內(nèi)存分配

C 語言編程實例大全

在此示例中,您將學(xué)習(xí)存儲用戶使用動態(tài)內(nèi)存分配輸入的信息。

要理解此示例,您應(yīng)該了解以下C語言編程主題:

這個程序要求用戶存儲noOfRecords的值,并使用malloc()函數(shù)動態(tài)地為noOfRecords結(jié)構(gòu)變量分配內(nèi)存。

演示結(jié)構(gòu)的動態(tài)內(nèi)存分配

#include <stdio.h>
#include <stdlib.h>
struct course {
    int marks;
    char subject[30];
};

int main() {
    struct course *ptr;
    int i, noOfRecords;
    printf("輸入記錄數(shù): ");
    scanf("%d", &noOfRecords);

    //noOfRecords結(jié)構(gòu)的內(nèi)存分配
    ptr = (struct course *)malloc(noOfRecords * sizeof(struct course));
    for (i = 0; i < noOfRecords; ++i) {
        printf("分別輸入主題和標(biāo)記的名稱:\n");
        scanf("%s %d", (ptr + i)->subject, &(ptr + i)->marks);
    }

    printf("顯示信息:\n");
    for (i = 0; i < noOfRecords; ++i)
        printf("%s\t%d\n", (ptr + i)->subject, (ptr + i)->marks);

    return 0;
}

輸出結(jié)果

輸入記錄數(shù): 2
分別輸入主題和標(biāo)記的名稱:
Programming
22
分別輸入主題和標(biāo)記的名稱:
Structure
33

顯示信息:
Programming      22
Structure        33

C 語言編程實例大全

丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清