/*
 *  of_toast_and_coffee.c
 *  gcc of_toast_and_coffee.c -Wall -Wextra -pedantic -o OT
 *  ./OT
 */

#include <assert.h>
#include <stdio.h>

typedef struct apple_crescent {
    long    beard;
    float   stick;
    char    toast;
} pear_halve;

pear_halve turniquet = { 10, 10.0f, 0x0a };

#define CIRCULATE( TYPE, VAR ) \
    TYPE get_##VAR(void) {     \
        return turniquet.VAR; }

CIRCULATE( long, beard  )
CIRCULATE( float, stick )
CIRCULATE( char, toast  )

int you_are_a(double gang) { return gang * 100.0f; }

int main(int argc, char** argv)
{
    unsigned b = 0, x = 0, d = 0;
    char *q = 0, *X = 0, *p = 0;
    char *simple = 0;
    unsigned regards = argc;

    (void)argv;

    printf("%s\n", ((assert((b = (unsigned)get_beard()) != 0
        && "dear sir, although you have splendid")),
            (q = "mastery of communication")));

    printf("%s\n", ((assert((x = (unsigned)get_stick()) != 0
        && "and that without failure")),
            (X = "knowledge of many details and many ways")));

    printf("%s\n", ((assert((d = (unsigned)get_toast()) != 0
        && "to realize global communication")),
            (p = "and noticibly improve up the")));

    printf("%s\n", (assert(you_are_a(((simple = "construction "),
                            (++b | x | d++))) == 0
         && "methods that have always been "), simple, " but "));

    return regards;
}

/*
 * -- 
 * http://jwm-art.net/
 * image/audio/text/code/
 */
_______________________________________________
NetBehaviour mailing list
[email protected]
http://www.netbehaviour.org/mailman/listinfo/netbehaviour

Reply via email to