Search:

Type: Posts; User: rusty0412

Search: Search took 0.01 seconds.

  1. modify has function from string parameter to templates...

    hello, I have this function:

    template <class T> unsigned int HashTable<T>::hash( const string & key ) const
    {
    unsigned int hashVal = 0;
    // cout << key << "%";
    for( size_t i = 0; i <...
  2. Replies
    4
    Views
    1,211

    yes, I know about operator overloading, but the...

    yes, I know about operator overloading, but the thing is that in all examples i've found the assigment operator takes on only an object of the same type that the class...
  3. Replies
    4
    Views
    1,211

    Asigment and subscript operator

    Hello, I am creating a template class called Array which manages an array of pointers to pointers...

    this is the problem, suppose the Array class is created to type double, and I want to do this:...
  4. Replies
    1
    Views
    2,916

    Converting type string to type const char*

    How do I convert from type string to type const char*?
  5. Replies
    5
    Views
    2,909

    DOS commands using C++

    Is it possible to run specific DOS commands from a C++ program?
  6. Replies
    4
    Views
    2,108

    Random character

    How may I get a random character from A to F?
    I've tried static_cast<char>(65 + rand() % 70) and it doesn't works.
  7. Replies
    3
    Views
    1,703

    I asked this on the forum since I don't want to...

    I asked this on the forum since I don't want to use a bad written tutorial...
  8. Thread: C++ & Cgi

    by rusty0412
    Replies
    3
    Views
    2,058

    The Deitels just published the new edition of...

    The Deitels just published the new edition of C++: How to program and it includes a chapter of CGI programming in C++. They have it in their site for free download, actually it serves as a demo...
  9. Replies
    3
    Views
    1,703

    Compiler building

    Where may I get an online tutorial about compiler construction either in C++ or C?
Results 1 to 9 of 9