當前位置:首頁 » 編程語言 » c語言動態與結構體

c語言動態與結構體

發布時間: 2025-01-15 00:19:16

c語言問題(student*)malloc(sizeof(student))

C語言動態申請數組(結構體)空間的應用,以下面一段代碼為例,你可以參考一下。
#include<stdio.h>#include<stdlib.h>#include<malloc.h>//包含malloc函數的頭文件struct Item//定義結構體{ char name[20]; int num; };struct Item *I;//申請Item類型的指針int A()//進行內存申請{ int i,j; int n;//申請的數量 scanf("%d",&n); I=(struct Item*)malloc(sizeof(struct Item)*n); return n; }int Input()//數據輸入函數{ int n=A(); int i,j; for(i=0;i<n;i++) { printf("%d Name:",i+1); scanf("%s",&I[i].name); printf("num:\n"); scanf("%d",&I[i].num); } return n; }void output()//數據輸出函數{ int n=Input(); for(int i=0;i<n;i++) { printf("%d |",i); printf("Name:%s ",I[i].name); printf("num:%d\n",I[i].num); }}int main(){ output(); return 0;}望採納!

熱點內容
易語言調用c語言dll 發布:2025-01-15 10:04:42 瀏覽:571
我的世界網易版有沒有純生存的伺服器 發布:2025-01-15 10:04:35 瀏覽:492
c語言變數賦值 發布:2025-01-15 09:54:15 瀏覽:940
經典實用演算法 發布:2025-01-15 09:52:52 瀏覽:622
xp電腦代理伺服器在哪 發布:2025-01-15 09:52:51 瀏覽:915
laravel上傳類型 發布:2025-01-15 09:39:55 瀏覽:544
怎麼看wifi萬能鑰匙密碼是什麼 發布:2025-01-15 09:35:09 瀏覽:602
怎麼調好一個伺服器 發布:2025-01-15 09:34:59 瀏覽:403
java流程式控制制 發布:2025-01-15 09:33:32 瀏覽:304
訊飛語音源碼 發布:2025-01-15 09:26:04 瀏覽:793