程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> typedef-assignment from incompatible pointer type

typedef-assignment from incompatible pointer type

編輯:編程解疑
assignment from incompatible pointer type

請問大神這個怎麼解決??謝謝了
代碼如下:

#include<stdio.h>
#include<stdlib.h>
struct student {    //xtudent 學籍;
    int c;          //長
    int k;          //寬
    int g;          //高
    char name[9];   //姓名
    struct stdent *next;
};
typedef struct student student;
int main()
{
    int n;
    while (scanf("%d", &n))
    {
        if (n != -1) {
            int j;
            student *p_head, *p_rail, *p_st;
            p_head = (student *)malloc(sizeof(student));
            p_rail = p_head;
            int lfn[9];                 //儲存體積
            char *lfnch[10];            //用於儲存要找的名字
            for (j = 0; j < n; j++)
            {
                p_st = (student *)malloc(sizeof(student));
                scanf("%d %d %d %s", &(p_st->c), &(p_st->k), &(p_st->g), p_st->name);
                p_rail->next = p_st;
                p_rail = p_st;
                lfn[j] = (p_st->c)*(p_st->k)*(p_st->g); //把體積儲存在數組中;
                lfnch[j] = (p_st->name);    //分別把名字儲存在數組中;
            }
            int min = lfn[0], max = lfn[0],pos1,pos2;
            for (j = 1; j < n; j++)             //找到體積最大最小並標記下標;
            {
                if (min > lfn[j])
                {
                    min = lfn[j];
                    pos1 = j;
                }
                else pos1 = 0;
                if (max < lfn[j])
                {
                    max = lfn[j];
                    pos2 = j;
                }

            }
            printf("%s took clay from %s\n", lfnch[pos2], lfnch[pos1]);
            min = 0, max = 0;
        }
        else
            break;

    }
    return 0;
}


圖片說明

最佳回答:


筆誤:

struct student { //xtudent 學籍;
int c; //長
int k; //寬
int g; //高
char name[9]; //姓名
struct student *next;
};

仔細看粗體部分。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved