Search:

Type: Posts; User: CSmith

Search: Search took 0.00 seconds.

  1. Replies
    26
    Views
    6,793

    Complete threadjack ahead: Were you...

    Complete threadjack ahead:






    Were you at the Woodward Dream Cruise yesterday?
  2. Thread: MUD programming

    by CSmith
    Replies
    6
    Views
    6,689

    I found...

    I found http://www.gamedev.net/reference/articles/article1766.asp on gamedev.net . . . the sourcecode for a MUD, called "AberMUD"
  3. Replies
    26
    Views
    5,575

    Lynx is the only way to be safe.

    Lynx is the only way to be safe.
  4. Replies
    28
    Views
    2,835

    system()?

    system()?
  5. Replies
    14
    Views
    2,799

    Very good point. One must make up for that then,...

    Very good point. One must make up for that then, I suppose.
  6. Replies
    14
    Views
    2,799

    For a more compliant approach, however, one could...

    For a more compliant approach, however, one could put


    if(cin.get()) return 0;

    at the end of your document, it does the same thing as getch();, and it not borland, it's ANSI.
  7. Thread: Opening .exe

    by CSmith
    Replies
    5
    Views
    1,089

    system() anyone?

    system() anyone?
  8. Replies
    9
    Views
    2,739

    This is also a "device communication" forum.

    This is also a "device communication" forum.
  9. Thread: SQRT Mystery...

    by CSmith
    Replies
    7
    Views
    2,309

    some code to play around with: ...

    some code to play around with:


    http://www.functionx.com/cpp/examples/squareroot.htm
  10. Replies
    35
    Views
    5,434

    Okay, thank you for the clarification.

    Okay, thank you for the clarification.
  11. Replies
    35
    Views
    5,434

    DigiPen is easy to get in to? Since when?

    DigiPen is easy to get in to? Since when?
  12. Replies
    4
    Views
    1,211

    Don't use the system function. ...

    Don't use the system function.

    http://www.cpp-home.com/FileIO_tutorial.php


    That should be a start.
  13. Replies
    4
    Views
    2,309

    Remember when you update Dev C++ to uninstall it...

    Remember when you update Dev C++ to uninstall it completely. If not, you'll have major effing problems.

    http://prdownloads.sourceforge.net/dev-cpp/devcpp4980.exe

    That's the download.



    On...
  14. Replies
    3
    Views
    1,362

    To add another: ...

    To add another:

    http://www.cs.rpi.edu/courses/sysprog/sockets/sock.html
  15. Replies
    4
    Views
    1,162

    Thank you very much. It worked. I'll search the...

    Thank you very much. It worked. I'll search the board more, though. Thank you.
  16. Replies
    4
    Views
    1,162

    Thanks a lot. I modified output[i++] =...

    Thanks a lot. I modified
    output[i++] = input[a]; to


    output[i] = input[a];
    i++;


    and i got somewhat of the desired result . . . except, when I run the program then, it goes up until the...
  17. Replies
    4
    Views
    1,162

    Conversion problem, apparently.

    #include <iostream>
    #include <cstdlib>
    #include <cstring>
    using namespace std;

    char output[20] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};

    char reverseorder(const char *input)
    {
  18. Replies
    12
    Views
    1,574

    Couldn't you make use of the for() loop? ...

    Couldn't you make use of the for() loop?



    To make an infinite loop, use For(;;)


    You could put your menu in that, and when the user wanted to exit, you could have something like,
    if(input...
Results 1 to 18 of 18