Search code examples
c++c2664

error C2664: show_info: cannot convert parameter 2 from 'char [20]' to 'char


I have a small structure:

struct price
{
    char name[20];
    char shop[20];
    int pr;
    price *next;
};

A function that doesn't work:

void show_info(price *&head, char cur)
{
    bool found = 0;
    price *temp = new price;
    temp->name = cur;
    for (price *i=head; i!=NULL; i=i->next)
        if (temp == i)
        {
            cout<< i->shop << i->pr;
            found = 1;
        }
        if (!found)
            cout << "The the good with such name is not found";
        delete temp;
 }

A main file:

int main()
{
    price *price_list=NULL;
    char inf[20];
    list_fill(price_list);
    cout << "Info about goods: ";
    show_list(price_list); //there is no problem
    cout <<"Input goods name you want to know about: ";
    cin >> inf;
    cout << "The info about good " << inf << show_info(price_list,inf)<<endl;
    system("pause");
    return 0;
}

I need to fix my function so it can work properly.

As stated the error is c2664.


Solution

  • Rewrite the function the following way

    #include <cstring>
    
    //...
    
    void show_info( const price *head, const char *cur )
    {
        bool found = false;
        const price *i = head;
    
        for ( ; i != NULL && !found; i = i->next )
        {
            found = strcmp( i->name, cur ) == 0;
        }
    
        if ( found )
        {
            cout<< i->shop << i->pr;
        }
        else
        {
            cout << "The the good with such name is not found";
        }
    }