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 » Fri Feb 04, 2005 5:31 am

wait i tyhought the 6*9=42 was in base 13 :?

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

Post by HK-47 » Fri Feb 04, 2005 12:33 pm

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;
}

User avatar
gannon
Moderator
Posts:6974
Joined:Sun Apr 04, 2004 4:48 pm
Location:Near that one big lake
Contact:

Post by gannon » Fri Feb 04, 2005 2:27 pm

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:

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

Post by HK-47 » Fri Feb 04, 2005 3:32 pm


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

Post by HK-47 » Sun Feb 06, 2005 4:51 pm

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

Post Reply