• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

Sign Up For The Team Races

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

TC

Senior Seti Addict
Joined
Jan 15, 2001
Location
Denver, CO
Lets get the races going again. Sign up here and we'll organize the teams at the end of the week.
 
Alright you poser geeks...what do we really start counting with???


HINT: its not 1!

;)

Cy
 
010101110110010101101100011011000010110000100000011010010110011000100000011101110110010100100000011101110110010101110010011001010010000001110100011100100111010101100101001000000110001101101111011011010111000001110101011101000110010101110010001000000110011101100101011001010110101101110011001011000010000001110100011010000110010101101110001000000110000101101100011011000010000001110100011010000110100101110011001000000111011101101111011101010110110001100100001000000110001101101111011011100111001101101001011100110111010000100000011011110110011000100000011101110110111101110101011011000110010000100000011000100110010100100000011110100110010101110010011011110111001100100000011000010110111001100100001000000110111101101110011001010111001100101100001000000110001101101111011100100111001001100101011000110111010000111111

You can translate that here.
 
Well, if we're going to get that geeky I'll add this to help with the last post:

#include <stdio.h>
#include <string.h>
char *sDualStr;
int a, exp;
void main()


{
sDualStr= "";
a= 0;
exp= 128;
printf("\ndecimal -> 8-bit binary converter\n");
printf("\nGive me a Number(0-255):");
scanf("%d", &a);


if ((a>= 0) && (a<= 255)) {


while (exp> 0) {



if (a>= exp) {
strcat(sDualStr, "1");
a-= exp;


} else {
strcat(sDualStr, "0");
}
exp/= 2;
}
printf("\nThe 8-bit binary string: %s\n", sDualStr);
}
}
 
Who knows what number we are at.

Anyways count me in.

Who are the captians going to be?
 
Count me in also please. This is my first team race, let me know what I need to do. Thanks.
 
Zero! Geeks always start counting with zero. :D

PS - And its not just "math" thing :p

Cy
 
Back