Search:

Type: Posts; User: slaveofthenet

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds; generated 33 minute(s) ago.

  1. cd beginn~1\test\Debug That's a shortcut for...

    cd beginn~1\test\Debug

    That's a shortcut for identifying long file/directory names.
  2. Poll: For me it was: High School - Don't pay...

    For me it was:

    High School - Don't pay attention, graduate with a lot of C's and D's, occasional A in classes like programming.

    College however will be the opposite, I plan on working a lot...
  3. if and else aren't loops, loops are while, do...

    if and else aren't loops, loops are while, do while, and for.


    for (int i = 0; i < 10; ++i)
    {
    cout << i << "\n";
    }

    while (v1 != v2)
    {
  4. Replies
    60
    Views
    13,546

    Poll: I had the same problem with Tux Racer until I got...

    I had the same problem with Tux Racer until I got a new graphic card driver. I'm using a geforce2MX, the default linux drivers are alright for general use, just not for opengl. I installed the driver...
  5. Replies
    31
    Views
    6,623

    It's not about being a pussy, what if you don't...

    It's not about being a pussy, what if you don't think the war is just? What if you're a pacifist? I can see the need if say we were being invaded, I'd be inclined to go out and fight for my my...
  6. Replies
    7
    Views
    1,186

    DLL's contain compiled code, you can't open them...

    DLL's contain compiled code, you can't open them up and view the actual source.
  7. Replies
    11
    Views
    9,720

    I've written a small program that should work. It...

    I've written a small program that should work. It fills a vector with 200 names, then fills another vector with the same names in a random order. It then goes through and moves each turtle to the top...
  8. Replies
    3
    Views
    1,092

    With the addition of using namespace std,...

    With the addition of using namespace std, changing main to int, and adding a return value of 0 it compiles fine for me on gcc.
  9. Started sophmore year in high school and I just...

    Started sophmore year in high school and I just graduated. I'm still learning, I hope to learn a lot in college.
  10. Replies
    2
    Views
    935

    Append \n to the end of your first message to...

    Append \n to the end of your first message to output a endline.


    cout << "Line 1\n";
    cout << "Line 2";
  11. Replies
    6
    Views
    1,708

    For single characters you use ' ' to enclose...

    For single characters you use ' ' to enclose them, not " ", ie cout << '\n';.
  12. Replies
    2
    Views
    1,197

    Well, for starters you're using the deprecated...

    Well, for starters you're using the deprecated headers, it should be like this:


    #include <iostream>
    #include <fstream>
    #include <conio.h>
    //#include <string> no string library functions used...
  13. Replies
    54
    Views
    11,732

    I'm getting tired of hearing about this kid, he's...

    I'm getting tired of hearing about this kid, he's everywhere. Sure what the kids did was dumb, but his lawyers are asking for way too much, and If he wins this case then it's going to ruin the lives...
  14. Replies
    10
    Views
    3,448

    That's odd. You're also missing e-mail and www...

    That's odd. You're also missing e-mail and www buttons.
  15. Replies
    2
    Views
    974

    Instead of using =, use strncpy(). ...

    Instead of using =, use strncpy().


    strncpy(clperson1->name1, _name1, 25);
    strncpy(clperson1->name2, _name2, 25);
  16. Replies
    2
    Views
    1,314

    To get past those anti right click scripts just...

    To get past those anti right click scripts just right click on the page, when the alert shows up hold right click, left click ok, then release the right click on the page, it will bring down the menu.
  17. Angelfire gives 20mb webspace for free.

    Angelfire gives 20mb webspace for free.
  18. Replies
    139
    Views
    24,001

    Poll: Give it a year or two.. that will change.

    Give it a year or two.. that will change.
  19. Replies
    19
    Views
    3,275

    I'm on Windows XP and i've never had any issues...

    I'm on Windows XP and i've never had any issues with Norton.
  20. Not always.

    Not always.
  21. You're using the wrong variables for sum and...

    You're using the wrong variables for sum and average, they are the other way around. What you want is just a simple function, with a return type of void (nothing). Here's an example.


    #include...
  22. Replies
    1
    Views
    925

    Can you post some of the code?

    Can you post some of the code?
  23. Replies
    6
    Views
    1,752

    Yes, here's an example from one of my programs. ...

    Yes, here's an example from one of my programs.


    template <class T> T& linked_list<T>::operator[](int index)
    {
    if (index < 0 || index >= list_size) throw out_of_bounds();
    node<T> *temp;...
  24. Replies
    4
    Views
    2,808

    Have you tried google (http://www.google.com)?

    Have you tried google?
  25. Replies
    2
    Views
    2,175

    I'm a vegetarian and I love the meatless burgers,...

    I'm a vegetarian and I love the meatless burgers, sausages, etc out on the market. I guess it depends on who makes it and what it's topped with. The traditional gardenburgers made with rice and...
Results 1 to 25 of 80
Page 1 of 4 1 2 3 4