Search:

Type: Posts; User: levi

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    1,605

    This may not be much help to you if you aren't...

    This may not be much help to you if you aren't using Microsoft Visual C++ (MSVC++), but if you are... visit codeproject.com
    http://www.codeproject.com/cpp/

    this site has all kinds of sample code,...
  2. Replies
    6
    Views
    2,967

    i've used the system(char*) function before... ...

    i've used the system(char*) function before...



    #include <process.h>

    int main(int argc, char* argv[])
    {
    system("ping www.google.com");
    return 0;
  3. Replies
    9
    Views
    1,562

    this code, by itself, works fine: char...

    this code, by itself, works fine:


    char *args[1000];
    args[0] = new char[10];
    delete [] args[0];


    so there must be something else happening inbetween. some possible causes can be you...
  4. Replies
    12
    Views
    2,695

    what compiler are you using? that would help me...

    what compiler are you using? that would help me to find your errors.

    one cause for an incorrect "lvalue" is when you try to change the value of a constant. for exampe:


    const int SIX=6;
    SIX...
Results 1 to 4 of 4