表的增刪改查代碼

#include<stdio.h> #include<malloc.h> typedef struct { int data[100]; int length; }Seqlist; //建立表 void creatSeqlist(Seqlist *L) { int i, len, tmp; printf("請輸入表的長度:"); scanf("%d", &len); L->length
相關文章
相關標籤/搜索