Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5929255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T14:23:54+00:00 2026-05-22T14:23:54+00:00

I finally made my func but can’t use it in my main. The compiler

  • 0

I finally made my func but can’t use it in my main. The compiler errors with:

cannot convert Node' toNode*’ for argument 1' tovoid add(Node*, Node*)’

Can somebody help me resolve the error?

#include <iostream>
#include <stdlib.h>
#include <stdio.h>
using namespace std;

struct Node
{
    int data;   
    struct Node *next;  
};
void add(Node* node, Node* newNode);
int main()
{ 
    struct Node *llist;
    struct Node *newNode;
    newNode->data = 13;
    llist = (Node*)malloc(sizeof(struct Node));
    llist->data = 10;
    llist->next = (Node*)malloc(sizeof(struct Node));
    llist->next->data = 15;
    llist->next->next = NULL;
    add(llist,newNode);
    printf("test\n");
    struct Node *cursor = llist;
    while (cursor != NULL) 
    {
        printf("%d\n", cursor->data);          
        cursor = cursor->next;
    } 
    system("pause");
    return 0;   
}            
void add(Node* insertafter, Node* newNode)
{
     newNode->next = insertafter->next;
     insertafter->next = newNode;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T14:23:54+00:00Added an answer on May 22, 2026 at 2:23 pm

    It should be void add(struct Node* node, struct Node* newNode);.

    OR:

    struct Node
    {
        int data;   
        struct Node *next;  
    }Node;
    

    Also, please note that you asign values to fields of newNode which is a pointer, before allocating space for the actual struct:

    newNode = malloc(sizeof(stuct Node));
    

    And one more thing – if this is C and not C++, you should remove using namespace std;

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have finally made a production worthy app with play, and use the play
As you can guess from the title, the outlining with regions finally made me
I finally got AdMob to work on an android game I made, but it
This morning I finally made my mind and decided to ask you for help.
So I've finally made a website that looks great in every major modern browser.
String a=(Yeahhhh) I have finally made it to the (top); Given above String, there
Finally deployed my ruby on rails 3.2 app but when trying to open it
Finally figured it out thanks to One Mad Monkey, but forgot quotes on my
I finally figured out how to implement pg_search's multisearch feature. But I'm having trouble
I made a finally simulator using lambda in C++11 as below: #include <cstdio> template<typename

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.