CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: laserlight

Search: Search took 0.06 seconds.

  1. Re: 'NODE' undeclared (first use in this function)

    If you would rather not have the typedef because you think struct NODE is more readable, then write struct NODE instead of NODE, which is what I told you that you were missing in my previous post. I...
  2. Re: 'NODE' undeclared (first use in this function)

    You don't seem to have an appropriate typedef, so NODE should be struct NODE, which you got right quite a few times but failed to do so on this line:

    node = (NODE *)malloc(sizeof(NODE));
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured