http://www.jungol.co.kr/bbs/board.php?bo_table=pbank&code=1419&sca=99 JUNGOL www.jungol.co.kr #include /* 0001 0010 0011 0100 0101 0110 0111 1000 (Big Endian) 1 2 3 45 6 7 8 0111 1000 0101 0110 0011 0100 0001 0010 (Little Endian) 7 8 5 63 4 1 2 8비트씩 끊어서 표현함 */ /* Horner's method ara 12040 1204 1240 1402 04021 while (a) { ra = ra * 10 + a % 10; a /= 10; } */ typedef unsigned int u32; u32 input, o..