본문 바로가기
Dev./Sec. Study/C/C++

The "goes toward" operator

by 로제마인 2013. 3. 15.


The "goes toward" operator

        void doStuff(int count) {
                while(count --> 0) 
                        fleh();
        }




일반적으로 사용하는 것과 다른 점이 공백 위치 뿐인데

엄청난 직관력


일수도 있고 아닐 수도 있고.


출처 : http://www.steike.com/code/useless/evil-c/



'Dev./Sec. Study > C/C++' 카테고리의 다른 글

c++ / valgrind on linux  (0) 2014.02.06
CRC32 implementation from apple open source  (0) 2012.11.30
동생의 스네이크 게임  (0) 2012.11.11
Struct Hack  (0) 2012.08.23
[펌][C++] new는 null을 return하는가?  (0) 2012.03.07