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 strongm 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
  • Order by date
  1. KingOfJava

    Create a lib

    My Question is like this: I wanted to create an Intermediat files and place them in (header file in include directory) and Object file in lib or object files directory so that a user using it has not to worry about [b]$LD_LIBRARY_PATH[b] or [b]$PATH[b] to be set. [b]Test.h[b] goes to include...
  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

    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...
  4. 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...
  5. KingOfJava

    Want algorithm to sort records.

    Thank you jstreich for your sugg. Regards, Samule.
  6. KingOfJava

    Want algorithm to sort records.

    What ever the sort, Let me do it on EMp rec EMPNO:ENAME:JOB:MGR_NO:HIRE_DATE:SAL:COMM:DEPTNO Is the records in the file with no of rec's I wanna sort with Job and Deptno as a key. I am looking for alog. Thanx in adv. Regards, KingOfJava.
  7. 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