Having error:invalid type argument of unary '*" (have 'int')

Having error:invalid type argument of unary '*" (have 'int')

这是我在这里的第一个问题,我还在学习 c,我正在编写这段代码来输入用户银行帐户的详细信息以归档并从文件中读取所有记录,当出现错误时, error:invalid 一元 '*" 的类型参数(有 'int')出现在所有指向 struct *ptr 的指针指向整数值的行上(例如第 40 行)

struct usr_act
{
    char username[24], address[24], status;
    int id, prebal, cp, newbal, pdate;
}a[3];

int j=0;
struct usr_act *ptr;
bool r;

void input()
{
    FILE *fp;
    fp = fopen("accounts.txt","a+");
    
    if(fp==NULL)
    {
        printf("Error!!");
        exit(1);
    }
    
    printf("\n\tRecord %d\n\n",j+1);
    fprintf(fp,"Record",j+1);
    
    printf("\nName:- ");
    for(int i=0;i<24;i++)
    {
        scanf("%c",ptr->username[i]);
    }
    fprintf(fp,"Name:- %s",*(ptr->username));
    
    printf("\nAddress:- ");
    for(int i=0;i<24;i++)
    {
        scanf("%c",ptr->address[i]);
    }
    fprintf(fp,"Address:- %s",*(ptr->address));
    
    printf("\nCustomer Id:- ");
    scanf("%d",ptr->id);
    fprintf(fp,"Customer Id:- %d",*(ptr->id)); //Error 
    
    printf("\nPrevious balance:- ");
    scanf("%d",ptr->prebal);
    fprintf(fp,"Previous Balance:- %d",*(ptr->prebal)); //Error
    
    printf("\nCurrent Payment:- ");
    scanf("%d",ptr->cp);
    fprintf(fp,"Current Payment:- %d",*(ptr->cp)); //Error
    
    printf("\nPayment Date:- ");
    scanf("%d",ptr->pdate);
    fprintf(fp,"Payment Date:- %d",*(ptr->pdate)); //Error
    
    fclose(fp);
    r=true;
}

void calc()
{
    FILE *fp;
    fp = fopen("accounts.txt","a+");
    
    if(fp==NULL)
    {
        printf("Error!!");
        exit(1);
    }
    
    float k;
    k = 0.10 * (*(ptr->prebal));
    
    if(*(ptr->cp)>0 && *(ptr->cp)<k)
    {
        ptr->status='o';
    }
    
    else
    {
        ptr->status='c';
    }
    fprintf(fp,"Account status:- %c",*(ptr->status));
    
    ptr->newbal= *(ptr->prebal) - (*(ptr->cp));
    fprintf(fp,"New Balance:- %d",*(ptr->cp));
    
    fclose(fp);
}

在两者之间我有一个显示功能,它显示文件中的数据,这是主要功能

int main()
{
    int l;
    do
    {
        ptr=&a[j];
        r=false;
        printf("\n\tMenu\nk=1, Input details \nk=2, Show patient records \nk=3, Exit \n\nEnter your choice:- ");
        scanf("%d",&l);
        
        switch(l)
        {
            case 1:
            {
                input();
                calc();
                break;
            }
            
            case 2:
            {
                display();
                break;
            }
        }
        
        if(r==true)
        {
            j=j+1;
        }
    } while(l!=3);
    
    return 0;
}

我该如何解决这个问题?

对于您在第 40 行引用的示例,您需要像这样将参数的地址传递给 scanf()

scanf("%d", &ptr->id);

这是因为 scanf() 需要在给定变量中存储一个新值,但是因为 C 使用按值传递约定进行参数传递,所以需要指向变量的指针。

错误与此语句有关

fprintf(fp,"Previous Balance:- %d",*(ptr->prebal));

表达式ptr->prebal的类型是整型。所以你可能不应用运算符 *.

还有这个电话

fprintf(fp,"Record",j+1);

没有意义,因为未使用参数 j + 1

fprintf的通话中这样

fprintf(fp,"Name:- %s",*(ptr->username));

参数类型无效 *(ptr->username)。相反,必须有 ptr->username.

此外,您在调用 scanf 时使用了无效参数,就像在该语句中一样

scanf("%c",ptr->username[i]);

你至少要写

scanf("%c", &ptr->username[i]);

您需要在使用前阅读 fprintfscanf 的说明。

如果您仔细阅读编译日志,gcc 编译器会直接为您指出错误的确切位置:

error: invalid type argument of unary '*' (have 'int')

此消息的意思是“您对一元 '*' 运算符的参数具有无效类型,您给它的 'int' 没有意义。然后在错误文本下方您会得到这个:

fprintf(fp, "Customer Id:- %d", *(ptr->id));  // Error
                                ^~~~~~~~~~

这里的 ^~~~~~~~~~“ASCII 艺术”是一个下划线,指出有问题的表达式 *(ptr->id)^ 是一个箭头,指出确切的表达方式错误的位置。