鱼C论坛

 找回密码
 立即注册
查看: 2868|回复: 1

编译没问题,但运行不显示结果

[复制链接]
发表于 2021-10-15 11:16:38 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<stdio.h>
#include<stdlib.h>

#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INIT_SIZE 10
#define INCREMENT_SIZE 5

typedef int Status;
typedef int Elemtype;
typedef struct{
        Elemtype *elem;
        int length;
        int size;
}SqList;

Status InitList(SqList *L){
        L->elem=(Elemtype *) malloc(INIT_SIZE*sizeof(Elemtype));
        if(!L->elem){
                return ERROR;
        }
        L->length=0;
        L->size=INIT_SIZE;
        return OK;
}
int main(){
       
       
        SqList *q;
        InitList(q);
        printf("线性表的现有数据长度:");
        printf("%d\n",q->length);
        printf("线性表的总长度:");
        printf("%d",q->size);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-10-15 12:26:49 | 显示全部楼层
    q -> size = 10
    q -> length = 0
难道有什么不对吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 08:07

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表