태그>unsigned(총 8개의 글)
'unsigned' 관련 최근글
-
- With You - Chris Brown Cover -...

-
음악을 중심으로 흘러가는 세상 by 음악사랑|2012/04/12 11:50
www.myspace.com www.twitter.com www.facebook.com Now signed by Island Def Jam records and Usher. First single "One Time" scheduled to be release to iTunes July 7th! Thanks for all the fan support! Wouldn't be h..
- With You - Chris Brown Cover -...
-
-
-
- (GCC) warning: comparison is always true due to limited range ..

-
플라밍고님의 이글루 by 플라밍고|2009/12/04 14:35
char c = 0xff; if ( c != -1 ) c = 0xff; 데이터 형식 범위의 한계로 인해 비교가 항상 참(true)이란다. gcc는 char타입을 기본적으로 unsigned로 취급하는 것 같다. (아니면 뭔가 설정을 잘못했거나.) signed char로 수정하면 문제가 해결된다.
- (GCC) warning: comparison is always true due to limited range ..
-
- Multiplication and division of unsigned bin..

-
봄날의 이글루 . . . by 레니v|2009/04/17 12:45
Multiplication If we want to calculate the multiplication of two binary number, We can express other way using left shift operator. <<n means shift left the binary number as n..
- Multiplication and division of unsigned bin..
-
- char도 부호가 있다

-
Purewell.BIZ by 샘이|2008/01/14 17:26
#include #include int main(int argc, char* argv[]) { char b = 255; int a = b; printf("%dn", a); return 0; } 아무런 옵션을 주지 않고 gcc로 컴파일 하면 결과는 -1이 나온다. 그러나 "-funsigned-char"옵션을 주고 컴파일하..
- char도 부호가 있다
-
- unsigned type & loop

-
Purewell.BIZ by 샘이|2007/10/02 18:42
C/C+에는 여러가지 숫자변수형태가 있고, 이는 부호가 있는 것(signed)과 없는 것(unsigned)으로 나눌 수 있다. 오늘 할 이야기는 그 중에 하나 키가 크고요~.가 아니라 부호가 없는 것에 대한 저주스런 이야기이다.size_t i(delta); while ( i >= 0 ) { // blar ..
- unsigned type & loop



