Search:

Type: Posts; User: Nick

Page 1 of 20 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    1,522

    All you have to do is just sort s like a reguar...

    All you have to do is just sort s like a reguar array in
    alpha. You don't have to return anything because you've passed
    s in by referance. Also you shouldn't have to check for whitespace because...
  2. Replies
    67
    Views
    13,886

    Poll: What do you mean by high risk though? I would...

    What do you mean by high risk though?
    I would think the one in charge of military tactics, whom has
    thousands under him/her, has alot more risk and responsibility than a grunt on the front lines.
  3. Replies
    16
    Views
    6,043

    Poll: Reminds me of that the Simpson's. You better be...

    Reminds me of that the Simpson's. You better
    be careful putting that stuft on.
  4. Thread: string functions?

    by Nick
    Replies
    6
    Views
    1,376

    /* #include #include ...

    /* #include <stdio.h>
    #include <string.h>
    */

    void reverse(char *str)
    {
    /* strlen returns size_t but at times I use int */
    int i,j=strlen(str)-1;
    for(i=0;i<j;++i,--j)
    ...
  5. Thread: Languages

    by Nick
    Replies
    23
    Views
    6,907

    BASIC is really a family of different langauges...

    BASIC is really a family of different langauges each with
    different syntax.
  6. Replies
    65
    Views
    11,801

    There are several facts that the earth is alive ...

    There are several facts that the earth is alive

    1. Birth.
    2. Death
    3. Attracts better than most men.
    4. It's center is warm but it's outside is cold.
    5. Blood flows through it.
    6. ...
  7. Thread: Languages

    by Nick
    Replies
    23
    Views
    6,907

    None of the languages you've given have a...

    None of the languages you've given have a copyright.
    Besides BASIC they all have a standard that an implementation
    must abide by. The main language in use that is
    copyrighted or maybe you call it...
  8. Replies
    65
    Views
    11,801

    Yes I'm a madman but that story has alot in...

    Yes I'm a madman but that story has alot in common with
    the situation today. Typical stuft like men living 1000 years,
    new knowledge given to man etc.
    I was wrong about the date of that
    story....
  9. Replies
    14
    Views
    3,420

    Drink tea

    Drink tea
  10. Replies
    65
    Views
    11,801

    Well we know that this book is older than 2000BC...

    Well we know that this book is older than 2000BC
    but its origin is highly questionable. You should
    read them like you would read gilgamesh or any other
    old book. Mainly see how people back then...
  11. Replies
    2
    Views
    1,542

    You really can't use resourse files with the SDL...

    You really can't use resourse files with the SDL
    because the SDL is cross platform while .res files
    are only used on windows. You can write utilities to
    combine bitmaps into one and there is the...
  12. Replies
    65
    Views
    11,801

    But it's why most world religions condemm...

    But it's why most world religions condemm clonning.
    Is it unfair not to give their views?
  13. Replies
    65
    Views
    11,801

    Not to upset anybody... legend has it that the...

    Not to upset anybody... legend has it that the
    "Giants of reknown" (The evil spirits) were created
    by the union of angles and the daughters of man.

    This entertaining text is highly questionable....
  14. Thread: My Poem.

    by Nick
    Replies
    38
    Views
    7,855

    I will probably give these to a friend at...

    I will probably give these to a friend at Valentines.

    Bottle at Sea
    Read, to be Love
    Write, to send Love
    See, to be in Love
    Hear, Love is trapped in a bottle at sea.

    Lady Love
    Did you...
  15. Thread: Prophets?

    by Nick
    Replies
    16
    Views
    4,619

    At least 4 times. Since I don't get much sleep I...

    At least 4 times.
    Since I don't get much sleep I don't dream much (:
    1. One time I saw myself get into a car accident.
    2. This is more of a deja-vu experience. Last thanksgiving we were having...
  16. Thread: My Poem.

    by Nick
    Replies
    38
    Views
    7,855

    Maybe I should marry tea.

    Maybe I should marry tea.
  17. Thread: My Poem.

    by Nick
    Replies
    38
    Views
    7,855

    Coffee is my true love. Carefully hold her. ...

    Coffee is my true love.
    Carefully hold her.
    Bitter and sweet, sometimes hot and sometimes cold.
    Others may play and sleep, but we are in love.
    The sun rises to us and the stars are with us.
  18. Replies
    9
    Views
    2,852

    On a more serious note I would write something...

    On a more serious note I would write something like



    #include <cctype>
    using std::isspace;

    ...
    ..
    .
  19. Replies
    9
    Views
    2,852

    Sort of a noob Question => Qbeinnooostu

    Sort of a noob Question => Qbeinnooostu
  20. Replies
    15
    Views
    11,028

    I think this is the correct answer but I coded...

    I think this is the correct answer but I coded it sort of
    sloppy.



    #include <iostream>
    using std::cerr;
    using std::cout;
    using std::endl;
  21. Replies
    37
    Views
    7,028

    The one thing I think that is most important...

    The one thing I think that is most important about history is
    to read original sources. Just about any history
    class in the US about the Protestant Reformation will never
    share with you the...
  22. Replies
    13
    Views
    4,674

    It took me only about 10 minutes to add the few...

    It took me only about 10 minutes
    to add the few lines to build the tree (:

    These are the two most important functions to build the
    tree the rest of the functions follow the same form.


    ...
  23. Replies
    14
    Views
    14,496

    You really shouldn't be wasting your time...

    You really shouldn't be wasting your time optimizing bubble
    sort :) Are you even using -O2 with gcc? I don't think
    you would have the problem with register if you did.

    This is probably fairly...
  24. Replies
    13
    Views
    4,674

    This is just for factor. The functions like expr...

    This is just for factor. The functions like expr there
    are cases where you would set root = term() (this is
    in the default cases) and there
    are cases where you would do something like
    node*...
  25. Replies
    13
    Views
    4,674

    switch(next_token.type){ case '#': ...

    switch(next_token.type){
    case '#': //if the type of the token is a number
    val -> data = char(next_token.val);
    read_next_token(next_token); //get...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4