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 9128773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:35:37+00:00 2026-06-17T07:35:37+00:00

I was implementing a linked list with 3 elements using structs. It was working

  • 0

I was implementing a linked list with 3 elements using structs. It was working fine before I introduced the function to calculate the number of elements in the linked list Linked_list. Following is the code for the program in C.

C

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

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

struct node* Linked_list();

int Length();

int main()
{
    int length;
    Linked_list();
    length = Length();
    printf("%d", length);
}

struct node* Linked_list() {
    struct node* head = NULL;
    struct node* second = NULL;
    struct node* third = NULL;

    head = malloc(sizeof(struct node));
    second = malloc(sizeof(struct node));
    third = malloc(sizeof(struct node));

    head->data = 1;
    head->next = second;

    second->data = 2;
    second->next = third;

    third->data = 3;
    third->next = NULL;

    printf("%d %d", head->data, second->data);
}

int Length(struct node* head){
    struct node* current = head;
    int count = 0;

    while(current!=NULL)
    {
        count++;
        current = current->next;
    }
    return count;
}
  • 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-06-17T07:35:39+00:00Added an answer on June 17, 2026 at 7:35 am

    You are declaring and calling Length() as it had no parameters length = Length();

    But when you define it it does have one parameter:

    int Length(struct node* head)
    

    This is legal, but what happens is that the actual function doesn’t get a head parameter to work with and that is why it crashes.

    You should return head from Linked_list() (which is not currently returning anything) and feed that to Length().

    struct node* Linked_list() {
        ....
    
        printf("%d %d", head->data, second->data);
        return  head;
    }
    

    And then on main:

    struct node* head = Linked_list();
    length = Length(head);
    

    There might be other problems though.

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

Sidebar

Related Questions

I am implementing a function to recursively reverse a linked-list, but getting seg-fault. typedef
I'm implementing a non-locking FIFO using a linked list. The Enqueue of the FIFO
I'm having trouble implementing a Stack using a linked list with struct. The program
I am stuck implementing the add function of a circularly linked list in python.
How would you go about implementing a priority queue using a linked list in
Here is what a linked list implementing a stack with 3 elements might look
This is homework I'm working on implementing a linked list class for my C++
I'm working on implementing a dynamic linked list in C just to brush up
I am implementing hash table in C using linked list chaining method. The program
For a project I'm working on, I'm implementing a linked-list data-structure, which is based

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.