Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. thatDavidKid

    I am trying to write a remove() fun

    I am trying to write a remove() function for a Doubly LinkedList. I am using c++ in .NET, and wondering if anyone has some quick suggestions how to do it. Thanks
  2. thatDavidKid

    Initializing (const char name[], const char phone[])

    I am trying to inizialize: Person::Person(const char name[], const char phone[]) {} class Person { enum { NAMELEN = 81, PHONELEN = 7 }; protected: char name[NAMELEN]; // null-terminated string char phone[PHONELEN]; // *not* null-terminated }; the thing is that the...

Part and Inventory Search

Back
Top