Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 60
  1. #31
    JimTheGreat's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    USA
    Posts
    6,771
    Reputation
    125
    Thanks
    714
    My Mood
    Aggressive
    No one gives a shit about the rules now.

  2. #32
    ShunnyBun's Avatar
    Join Date
    Sep 2010
    Gender
    female
    Location
    MPGH Paradise
    Posts
    1,646
    Reputation
    33
    Thanks
    111
    My Mood
    Happy
    ^You're just a asshole.


    Define Gravity


  3. #33
    JimTheGreat's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    USA
    Posts
    6,771
    Reputation
    125
    Thanks
    714
    My Mood
    Aggressive
    1. The force of attraction by which terrestrial bodies tend to fall toward the center of the earth.
    2. Heaviness or weight.
    3. Gravitation in general.
    4. Acceleration of gravity.
    5. A unit of acceleration equal to the acceleration of gravity. Symbol: g

    Define #define

  4. #34
    ShunnyBun's Avatar
    Join Date
    Sep 2010
    Gender
    female
    Location
    MPGH Paradise
    Posts
    1,646
    Reputation
    33
    Thanks
    111
    My Mood
    Happy
    Code:
    The #define directive specifies a macro identifier and a replacement list, and terminates with a new-line character. The replacement list, a sequence of preprocessing tokens, is substituted for every subsequent occurrence of that macro identifier in the program text, unless the identifier occurs inside a character constant, a comment, or a literal string. The #undef directive is used to cancel a definition for a macro. 
    
     A macro definition is independent of block structure, and is in effect from the #define directive that defines it until either a corresponding #undef directive or the end of the compilation unit is encountered. 
    
     The #define directive has the following syntax: 
    #define identifier replacement-list newline
    #define identifier ( identifier-list(opt) )
    replacement-list newline
    
     If the replacement-list is empty, subsequent occurrences of the identifier are deleted from the source file. 
    
     The first form of the #define directive is called an object-like macro. The second form is called a function-like macro. 
    
     The #undef directive has the following syntax: 
    #undef identifier newline
    
     This directive cancels a previous definition of the identifier by #define . Redefining a macro previously defined is not legal, unless the new definition is precisely the same as the old. 
    
     The replacement list in the macro definition, as well as arguments in a function-like macro reference, can contain other macro references.  DEC C does not limit the depth to which such references can be nested. 
    
     For a given macro definition, any macro names contained in the replacement list are themselves replaced by their currently specified replacement lists. If a macro name being defined is contained in its own replacement list or in a nested replacement list, it is not replaced. These nonreplaced macro names are then no longer available for further replacement, even if they are later examined in contexts in which they would otherwise be replaced. 
    
     The following example shows nested #define directives: 
    /*  Show multiple substitutions and listing format. */
    
    #define  AUTHOR  james + LAST
    
    main()
    {
       int writer,james,michener,joyce;
    
       #define LAST michener
       writer = AUTHOR;
       #undef LAST
       #define LAST joyce
       writer = AUTHOR;
    }
    
     After this example is compiled with the appropriate options to show intermediate macro expansions, the following listing results: 
        1            /* Show multiple substitutions and listing format. */
        2
        3            #define AUTHOR james + LAST
        4
        5            main()
        6            {
        7              int writer, james, michener, joyce;
        8
        9              #define LAST michener
       10              writer = AUTHOR;
       10.1                     james + LAST
       10.2                     michener
    
       11              #undef LAST
       12              #define LAST joyce
       13              writer = AUTHOR;
       13.1                     james + LAST
       13.2                     joyce
       14            }
    
     On the first pass, the compiler replaces the identifier AUTHOR with the replacement list james + LAST . On the second pass, the compiler replaces the identifier LAST with its currently defined replacement list value. At line 9, the replacement list value for LAST is the identifier michener , so michener is substituted at line 10. At line 12, the replacement list value for LAST is redefined to be the identifier joyce , so joyce is substituted at line 13. 
    
     The #define directive may be continued onto subsequent lines if necessary. To do this, end each line to be continued with a backslash (\) immediately followed by a new-line character. The backslash and new-line characters do not become part of the definition. The first character in the next line is logically adjacent to the character that immediately precedes the backslash. The backslash/newline as a continuation sequence is valid anywhere. However, comments within the definition line can be continued without the backslash/newline. 
    
     If you plan to port programs to and from other C implementations, take care in choosing which macro definitions to use within your programs, because some implementations define different macros than others.

    Do you believe in god?


  5. #35
    RoLe's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    The Netherlands
    Posts
    1,495
    Reputation
    125
    Thanks
    2,104
    My Mood
    Grumpy
    I believe in me.
    Do you like me?
    former Rez modding NL
    My fake plants died because I did not pretend to water them.
     
    yoyu333 Mahalkosiheart louisdemon1 jarkajarka
     



    ~

    ~
    ~
    ~

  6. #36
    unspeakable's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    WorldWide
    Posts
    73
    Reputation
    21
    Thanks
    7
    My Mood
    Dead
    not for me to answer , yeah i like your profile pic tho brings back loads of memories.

    i mean really! how is life at sea RoLe?

    @Digits2012: that was a long answer to write! did you just copy it or did you actually spend time writing that code/text?

    EDIT2 : beat u to it, i found it on this web:https://h30097.www3.hp.com/docs/base_...E/DOCU0018.HTM
    looks like you did copy and past it.

    nice pics of your self, looks a young nicki minaj )
    Last edited by unspeakable; 09-24-2012 at 12:36 PM.
    "out out , brief candle" life is a matter of seconds.

  7. #37
    ShunnyBun's Avatar
    Join Date
    Sep 2010
    Gender
    female
    Location
    MPGH Paradise
    Posts
    1,646
    Reputation
    33
    Thanks
    111
    My Mood
    Happy
    Quote Originally Posted by unspeakable View Post
    not for me to answer , yeah i like your profile pic tho brings back loads of memories.

    i mean really! how is life at sea RoLe?

    @Digits2012: that was a long answer to write! did you just copy it or did you actually spend time writing that code/text?

    EDIT2 : beat u to it, i found it on this web:Tru64 UNIX
    looks like you did copy and past it.

    nice pics of your self, looks a young nicki minaj )
    Are yuu trying to hit on me??? LOL jk!
    Anyway, yea it was c/p :P


  8. #38
    Glaceon's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    1,904
    Reputation
    111
    Thanks
    499
    My Mood
    Cold
    @Digits2012

    No question for me?
    Q:
    How can you answer me?

  9. #39
    RoLe's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    The Netherlands
    Posts
    1,495
    Reputation
    125
    Thanks
    2,104
    My Mood
    Grumpy
    By typing.
    Are you bored ATM? @jarkajarka (IDK why I mention u)
    former Rez modding NL
    My fake plants died because I did not pretend to water them.
     
    yoyu333 Mahalkosiheart louisdemon1 jarkajarka
     



    ~

    ~
    ~
    ~

  10. #40
    ShunnyBun's Avatar
    Join Date
    Sep 2010
    Gender
    female
    Location
    MPGH Paradise
    Posts
    1,646
    Reputation
    33
    Thanks
    111
    My Mood
    Happy
    very....
    What's your dream car?


  11. #41
    Instrumental's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Global
    Posts
    1,220
    Reputation
    59
    Thanks
    832
    My Mood
    Cheerful
    bugatti veyron
    How much money u earn in a month??

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

    goodlifeand (09-25-2012)

  13. #42
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Around 6$
    Why is weed called "the healing of the nation"?

  14. #43
    In the immortal words of Clark Whatsisname -- up, up and away!
    MPGH Member
    ZReal's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    In My T-90 tank
    Posts
    1,347
    Reputation
    10
    Thanks
    1,069
    My Mood
    Goofy
    Quote Originally Posted by Whiskey. View Post
    If a shemale tried to grab your balls, would you reject, or accept?
    I would have to accept

    ---------- Post added at 11:08 AM ---------- Previous post was at 11:06 AM ----------

    Do you like DIRTY dancing

  15. #44
    ShunnyBun's Avatar
    Join Date
    Sep 2010
    Gender
    female
    Location
    MPGH Paradise
    Posts
    1,646
    Reputation
    33
    Thanks
    111
    My Mood
    Happy
    I like to twerk it(google if you don't know what it means) :P

    What is your favorite type of music?


  16. #45
    unspeakable's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    WorldWide
    Posts
    73
    Reputation
    21
    Thanks
    7
    My Mood
    Dead
    hiphop rap singing

    why is 11 not pronounced as onetyone?
    "out out , brief candle" life is a matter of seconds.

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. De-Rep The Person Above You Game
    By TheRealVB in forum Spammers Corner
    Replies: 3
    Last Post: 05-27-2012, 07:36 PM
  2. Mention the Person Above You Game
    By Swiftdude in forum Spammers Corner
    Replies: 3
    Last Post: 02-10-2011, 07:25 PM
  3. Ban The Person Above You
    By Carms in forum Spammers Corner
    Replies: 7
    Last Post: 12-24-2008, 07:01 PM
  4. The Person Above you
    By mostwanted in forum General
    Replies: 68
    Last Post: 09-02-2007, 05:00 AM
  5. The person below you
    By Kyojiro in forum General
    Replies: 12
    Last Post: 04-27-2006, 08:28 PM