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

  • Home
  • SEARCH
  • 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 6536677
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:31:22+00:00 2026-05-25T10:31:22+00:00

I am writing a program that implements a stack in c. I want each

  • 0

I am writing a program that implements a stack in c. I want each node to take any type of data(ie int char struct etc) if I declare my node struct as

    typedef struct node{
           void *data;
           struct node *next;
   }Node;

Does that allow my void pointer data to point to any type of memory?

  • 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-25T10:31:23+00:00Added an answer on May 25, 2026 at 10:31 am

    Yes, but there are some caveats involving dereferencing your void pointer to access the data inside.

    Basically, say you have a node:

    Node *node;
    

    And you have some Point structure:

    typedef struct Point {
        int x;
        int y;
    } Point;
    

    And you put a point in a node:

    Point *p = malloc(sizeof(Point));
    p->x = 0;
    p->y = 3;
    node->data = p;
    

    In order to access the members of the point, you have to use a typecast:

    printf("%d\n", ((Point *)node->data)->x);
    

    Or you can assign a pointer of the correct type and copy the void pointer:

    Point *p = node->data;
    printf("%d\n", p->x);
    

    Because this won’t work:

    printf("%d\n", node->data->x);
    

    That’s because a void pointer contains no type information for the compiler to make sense of what’s being pointed to by a void pointer.

    And that’s pretty much all you need to know about how to use void pointers.

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

Sidebar

Related Questions

I'm writing a program that implements the Boneh-Franklin Identity Based Encryption. For the actual
I 'm writing a little program that implements pipes like they work in the
I am writing a program that needs to take text input, and modify individual
I'm writing a program that reads a stream of data and parses it into
I'm writing a program that implements the RFC 2544 network test. As the part
I'm writing a program that has two main functions. Each of the functions will
I am writing a program that reads data packets from a file, and assigns
I'm writing a program that sends an email out at a client's specific local
If you are writing a program that is executable from the command line, you
I'm writing a program that uses SetWindowRgn to make transparent holes in a window

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.