gpt4 book ai didi

c - 使用带结构的指针打印时获取位置地址而不是值?

转载 作者:太空宇宙 更新时间:2023-11-04 07:29:17 25 4
gpt4 key购买 nike

我有这个结构并使用指针,我试图打印不同结构变量的值,但对于 int 变量,它打印位置地址而不是值,对于 char 变量,结果是正确的。

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


struct calc{

int row;
int col;
int menu_name[20];
int sub_menu_name[20];

};




int main()
{
int count = 0, i = 0;

struct calc *P_calc[2];

//p_calc = (struct calc *)malloc(sizeof(struct calc)*2);


for(count; count<1; count++)
{
P_calc[count] = (struct calc *)malloc(sizeof(struct calc));

printf("Please enter the row cordinates: \n");

scanf("%d",P_calc[i]->row);
printf("Please enter the col cordinates: \n");

scanf("%d",P_calc[i]->col);
printf("Please enter the menu_name: \n");

scanf("%s",P_calc[i]->menu_name);
printf("Please enter the sub_menu_name: \n");

scanf("%s",P_calc[i]->sub_menu_name);


}

for(i; i<1; i++)
{
printf("row : %d\n",P_calc[i]->row);

printf("col :%d\n",P_calc[i]->col);

printf("menu_name: %s\n",P_calc[i]->menu_name);

printf("sub_menu_name :%s\n",P_calc[i]->sub_menu_name);
}


system("PAUSE");
return 0;
}

请帮助我。

提前致谢。

最佳答案

这是你的问题:

  1. 结构应该是

    struct calc{

    int row;
    int col;
    char menu_name[20];
    char sub_menu_name[20];

    };
  2. scanf("%d",P_calc[i]->row);应该是scanf("%d",&P_calc[i]->row);

  3. scanf("%d",P_calc[i]->col);应该是scanf("%d",&P_calc[i]->col);

检查 scanf 的返回值也是一个好主意。

关于c - 使用带结构的指针打印时获取位置地址而不是值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15377943/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com