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 bkrike 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: *

  • Users: KingOfJava
  • Content: Threads
  • Order by date
  1. KingOfJava

    Create a lib

    //Example.cpp // MAIN FILE : It make use of Test.h and Test.cpp #include &quot;Test.h&quot; int main(){ Test *t = new Test(&quot;KingOfJava&quot;); cout << t->getMessage() << endl; } //++++++++++++++++++++++++++++++++++++++++ //Test.h #include <iostream> #include <string> using namespace...
  2. KingOfJava

    Create a lib

    //Example.cpp // MAIN FILE : It make use of Test.h and Test.cpp #include &quot;Test.h&quot; int main(){ Test *t = new Test(&quot;KingOfJava&quot;); cout << t->getMessage() << endl; } //++++++++++++++++++++++++++++++++++++++++ //Test.h #include <iostream> #include <string> using namespace...
  3. KingOfJava

    Creat Lib file

    //Example.cpp // MAIN FILE : It make use of Test.h and Test.cpp #include &quot;Test.h&quot; int main(){ Test *t = new Test(&quot;KingOfJava&quot;); cout << t->getMessage() << endl; } //++++++++++++++++++++++++++++++++++++++++ //Test.h #include <iostream> #include <string> using namespace...
  4. KingOfJava

    Want algorithm to sort records.

    I want to sort records in a flatfile Could any one please help me in writing (program for it) Algoritham. Thanx in advance, Regards.

Part and Inventory Search

Back
Top