Page 2 of 2 FirstFirst 12
Results 16 to 29 of 29
  1. #16
    ilovecookies's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    In the C++ Section
    Posts
    321
    Reputation
    10
    Thanks
    67
    My Mood
    Shocked
    Quote Originally Posted by zhaoyun333 View Post
    Errr actually cookies is wrong, everything other than 1 is true. bool n = (36) in this expression n is true

    !(1||0) &&0) <--- your missing a bracket....but i suppose it would be here
    !((1||0) &&0)
    Since the INSIDE brackets are first we evaluate (1||0) which is true
    !( 1 && 0 )
    both have to be true so this express is now
    ! (0)
    the ! operator flips the bit so it would be
    1
    o_o How am I wrong? Is it not 1 = True, 0 = False
    Quote Originally Posted by Jules Winnfield View Post
    I am the tyranny of evil men, and you are all the weak. But i'm trying Ringo,i'm trying real hard, to become the shepherd.
    excuse me miss, would you kindly reflect some photons off the epidermis covering your sternum directly into the camera iris or vacate the proximity immediately
    [IMG]https://i882.photobucke*****m/albums/ac23/miki_d420/RealizingYoureALeecher2copy.jpg[/IMG]









  2. #17
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    0 = false, above 0 = true
    Ah we-a blaze the fyah, make it bun dem!

  3. #18
    crushed's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    My name is Jay. k?
    Posts
    415
    Reputation
    10
    Thanks
    113
    My Mood
    Sneaky
    Quote Originally Posted by Hell_Demon View Post
    0 = false, above 0 = true
    This is what Hell_Daddy wanted us all to see, children of his.


  4. #19
    falzarex's Avatar
    Join Date
    Apr 2008
    Gender
    male
    Location
    here
    Posts
    417
    Reputation
    14
    Thanks
    145
    Hey I found that first :O it was in my sig lol
    Quote Originally Posted by falzarex aka myself
    GTFO FUCKER U DONT BELONG IN THE INTERNETZ WORLD COZ ITS MINE


    This is an epic fail resume
    Hello VBfags.
    A 'member' of the almighty C++ section will soon join you, he is 13 year old, has the IQ and typing skills of a VBfag, so I thought he would fit in here nicely.

    A few reasons why he should be in this section instead of the C++ section:
    1) He has the IQ of a VBfag.
    2) He has no sense of grammer/spelling at all.
    3) He thinks he is pro(like most of the people in here)
    4) He thinks copy pasting is fun(exactly what you guys do)
    5) He loves it up the ass(he will keep you VBfags nice and warm)

  5. #20
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Hey! Dont forget my other post(that got removed pretty quickly ;P)

    Ah we-a blaze the fyah, make it bun dem!

  6. #21
    falzarex's Avatar
    Join Date
    Apr 2008
    Gender
    male
    Location
    here
    Posts
    417
    Reputation
    14
    Thanks
    145
    lol
    "Have fun in your new home"
    Quote Originally Posted by falzarex aka myself
    GTFO FUCKER U DONT BELONG IN THE INTERNETZ WORLD COZ ITS MINE


    This is an epic fail resume
    Hello VBfags.
    A 'member' of the almighty C++ section will soon join you, he is 13 year old, has the IQ and typing skills of a VBfag, so I thought he would fit in here nicely.

    A few reasons why he should be in this section instead of the C++ section:
    1) He has the IQ of a VBfag.
    2) He has no sense of grammer/spelling at all.
    3) He thinks he is pro(like most of the people in here)
    4) He thinks copy pasting is fun(exactly what you guys do)
    5) He loves it up the ass(he will keep you VBfags nice and warm)

  7. #22
    wtfiwantthatname's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    260
    Reputation
    10
    Thanks
    39
    My Mood
    Bored
    Quote Originally Posted by Hell_Demon View Post
    0 = false, above 0 = true
    I was under the impression that was only for converting over datatypes to a Boolean. And that False is equals 0 and true equals 1.
    "I don't believe in an afterlife, so I don't have to spend my whole life fearing hell, or fearing heaven even more. For whatever the tortures of hell, I think the boredom of heaven would be even worse." - Isaac Asimov

  8. #23
    ilovecookies's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    In the C++ Section
    Posts
    321
    Reputation
    10
    Thanks
    67
    My Mood
    Shocked
    Quote Originally Posted by wtfiwantthatname View Post
    I was under the impression that was only for converting over datatypes to a Boolean. And that False is equals 0 and true equals 1.
    That's basically what he's saying. 0 = False, and Anything above 0 = True, i.e.

    2 = true
    69 = true
    420 = true
    666 = true
    12122012=true
    0 = false
    Quote Originally Posted by Jules Winnfield View Post
    I am the tyranny of evil men, and you are all the weak. But i'm trying Ringo,i'm trying real hard, to become the shepherd.
    excuse me miss, would you kindly reflect some photons off the epidermis covering your sternum directly into the camera iris or vacate the proximity immediately
    [IMG]https://i882.photobucke*****m/albums/ac23/miki_d420/RealizingYoureALeecher2copy.jpg[/IMG]









  9. #24
    zeco's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    683
    Reputation
    12
    Thanks
    78
    My Mood
    Cynical
    Im certain that it is

    0 is false

    !0 is true ( by not zero that includes negative numbers)

  10. #25
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Quote Originally Posted by zeco View Post
    Im certain that it is

    0 is false

    !0 is true ( by not zero that includes negative numbers)
    someone teached me this too...

    including negative numbers..
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  11. #26
    crushed's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    My name is Jay. k?
    Posts
    415
    Reputation
    10
    Thanks
    113
    My Mood
    Sneaky
    To be or not to be, to be true, or to be not true, to be false, or to be gay.
    Wait what? o_o I somewhat understand this a bit more clearer now.

    But I definetly loved zeco's example on MSN last night.

    !(0 || 1)
    "!(Dead || Alive) = Alive. !(Alive)= Not Alive = Awww shet, he's dead guys. "

  12. The Following User Says Thank You to crushed For This Useful Post:

    Hell_Demon (12-22-2009)

  13. #27
    rwkeith's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Posts
    457
    Reputation
    11
    Thanks
    79
    My Mood
    Angelic
    Negatives can also be false. Technically, if it's not 0, it's true(ex. -100, 50, -3.50 are all true)
    Goals In Life:
    [X] Become an Advanced Member
    [X]Release a tut on mpgh
    [0]Post 300 posts
    [X]Make a working hack
    [X] Learn c++

  14. #28
    zeco's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    683
    Reputation
    12
    Thanks
    78
    My Mood
    Cynical
    Quote Originally Posted by rwkeith View Post
    Negatives can also be false. Technically, if it's not 0, it's true(ex. -100, 50, -3.50 are all true)
    Do you mean negatives can also be true? Because otherwise your statement contradicts itself =)

  15. #29
    rwkeith's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Posts
    457
    Reputation
    11
    Thanks
    79
    My Mood
    Angelic
    Quote Originally Posted by zeco View Post
    Do you mean negatives can also be true? Because otherwise your statement contradicts itself =)
    Yea, forgot to chew it over with a twix.
    Goals In Life:
    [X] Become an Advanced Member
    [X]Release a tut on mpgh
    [0]Post 300 posts
    [X]Make a working hack
    [X] Learn c++

Page 2 of 2 FirstFirst 12

Similar Threads

  1. d.vel.oper
    By Jeckels in forum WarRock - International Hacks
    Replies: 14
    Last Post: 10-16-2007, 01:53 PM
  2. Operation Northwoods
    By Grim09 in forum General
    Replies: 12
    Last Post: 07-21-2007, 12:45 AM
  3. [RELEASE] Operation Kcah V1.0
    By ArtofLife in forum WarRock - International Hacks
    Replies: 19
    Last Post: 06-09-2007, 03:34 PM
  4. Dont Sample The Boolean
    By kvmn8 in forum General
    Replies: 3
    Last Post: 06-15-2006, 08:48 AM