Doubt in reverse linked list

sir using recurssion reverse linked list it is showing error cant counvert node * to int why??

void recurssive_linked_list(node *&head,node prev,nodecurrent)
{

if(current==NULL)

{

    head=prev;

    return;

}

node *next_node=current->next;

current->next=prev;

prev=current;

current=next_node;

recursive_linear_search(head,prev,current);


return ;

}

Please share the link of Code

How to Share Link of Code??

  1. paste your code at https://ide.codingblocks.com/

  2. click->file->save

  3. after a link will be generated at top in place of url something like: https://ide.codingblocks.com/s/12345

  4. share this link

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.