Search:

Type: Posts; User: Saiyanman

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,194

    Dont worrie, right now were just trying to ge the...

    Dont worrie, right now were just trying to ge the word out more then anything else, in about a bweek or two we hope to have a site done to help advertise.
  2. Replies
    2
    Views
    1,194

    Anyone want to work on a game?

    A few friends and I are probably going to start working on a game using the Torque engine and we need some people to help out. Right now, we have very few people to work on it, but mostly we need...
  3. Thread: Quick sort

    by Saiyanman
    Replies
    4
    Views
    2,518

    done and done.

    done and done.
  4. Thread: scanf

    by Saiyanman
    Replies
    5
    Views
    870

    you can write a program that will change it for...

    you can write a program that will change it for you, it would take about an hour, and come in handy if you ever need to do it again.
  5. Thread: Quick sort

    by Saiyanman
    Replies
    4
    Views
    2,518

    heres the source for the whole program. ...

    heres the source for the whole program.

    Main.cpp is the main file, its writen in c++, but the function could be either.
  6. Thread: Quick sort

    by Saiyanman
    Replies
    4
    Views
    2,518

    Quick sort

    I'm trying to write my own quick sort, and its not wanting to work, what wrong?




    void quick_sort(int *a, int size, bool (*cmp) (int, int))
    {
    int p = partition(a,size,cmp);
    int lhs=(p+1);...
  7. Replies
    3
    Views
    1,042

    Simple c++ question

    I know how to do it with printf, but how do you limit the amount of digits when using cout with a float.
  8. Thread: newbie help!

    by Saiyanman
    Replies
    2
    Views
    1,095

    newbie help!

    why wont this work? its suposed to store names then list them.
  9. Thread: EOF trouble

    by Saiyanman
    Replies
    6
    Views
    1,189

    is the syntex for "#define NULL 0" correct?

    is the syntex for "#define NULL 0" correct?
  10. Thread: EOF trouble

    by Saiyanman
    Replies
    6
    Views
    1,189

    now i get a "this program has proformed an...

    now i get a "this program has proformed an illeagle operation" when i press ctrl+z
  11. Thread: EOF trouble

    by Saiyanman
    Replies
    6
    Views
    1,189

    EOF trouble

    im working on an assignment for school, and i need to count the number of words, lines, and charcters that the user inputs untel they enter a EOF, but my program wont work for some reason, and i cant...
Results 1 to 11 of 11