-
warning: comparison between signed and unsigned integer expressionsComputer/linux 2007. 6. 24. 08:20warning: comparison between signed and unsigned integer expressions
[en]
This warning is due to "size_t n". I use n in the code as following:for(i=0;i<n;i++) {}"for(i=0;i<(int)n;i++) {}" might be the solution whether is good or not.
My gcc -v is gcc version 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5).
[ko]
C 컴파일중의 이 경고 메세지는 "size_t n"때문이었다. for 문에서 아래와 같이 사용하던 것을for(i=0;i<n;i++) {}아래와 같이 고치니for(i=0;i<(int)n;i++) {}경고메세지가 사라졌다. 그리 좋은 해결책은 아니란 생각도 드는데.. 뭐...어때...'Computer > linux' 카테고리의 다른 글
uuid and local (0) 2007.06.27 How to do xterm configuration (0) 2007.06.22 mathematica linux icon directory (0) 2007.06.02