Preview my page for the book

Hey, making some projects from my book? Got a question about something? Wanna share what you've done? Here's the place - go for it!

Moderator: Moderators

JackFrost22
Sir Posts-alot
Posts: 4186
Joined: Fri Jun 04, 2004 4:10 pm

Post by JackFrost22 »

wait i tyhought the 6*9=42 was in base 13 :?
HK-47
Moderator
Posts: 3598
Joined: Thu Jul 15, 2004 2:17 pm
Location: /dev/moderator/
Contact:

Post by HK-47 »

Code: Select all

#include <stdio.h>

#define SIX    1 + 5
#define NINE   8 + 1

int main(void)
{
    printf( "What you get if you multiply six by nine: %d\n", SIX * NINE );
    return 0;
}
gannon
Moderator
Posts: 6974
Joined: Sun Apr 04, 2004 4:48 pm
Location: Near that one big lake
Contact:

Post by gannon »

what a coincidence!
gannon wrote:I like this explanation of it :)

Code: Select all

#include <stdio.h>

#define SIX    1 + 5
#define NINE   8 + 1

int main(void)
{
    printf( "What you get if you multiply six by nine: %d\n", SIX * NINE );
    return 0;
}
Although that post was from 3 months ago :roll:
HK-47
Moderator
Posts: 3598
Joined: Thu Jul 15, 2004 2:17 pm
Location: /dev/moderator/
Contact:

Post by HK-47 »

HK-47
Moderator
Posts: 3598
Joined: Thu Jul 15, 2004 2:17 pm
Location: /dev/moderator/
Contact:

Post by HK-47 »

Anyway, the project materials page is up. I like the look of it...
http://benheck.com/book/Project_Materials_Online.htm
Post Reply