C/C++

pchero on August 15th, 2010

 오늘 C++ 책에서 나온 소스코드를 컴파일하다 이상한 에러를 발견했다. 17-2.cpp:84: error: expected unqualified-id before numeric constant17-2.cpp:84: error: expected initializer before numeric constant  다음의 링크에서 해답을 찾을 수 있었다. http://bytes.com/topic/c/answers/752247-what-does-expected-unqualified-id-before-numeric-constant-mean All uppercase names are often used for preprocessor macros, which doesn’t respect namespace scopes. Therefore such names should generally be avoided for everything else.  즉 어디에선가 […]

Continue reading about error: expected unqualified-id before numeric constant

pchero on June 14th, 2010

 회사에서 우연한 기회로 접하게 된 redmine.  전부터 알고는 있었지만 한번도 사용한 적이 없었던 Subvision.  Java 프로그래밍을 할때만 사용했었던 Eclipse.  이 세가지를 이용하여 C/C++ 개발환경을 꾸며보았다.  나름 열심히 고생해서 연동에 성공했지만.. 늘 그렇듯이 하고나면 아무것도 아닌 것. 🙂  그래도 과정에 있어서 재미있는 경험을 많이 했으니 그것으로 만족하련다. 🙂  그리고, 이 문서로 하여금 다른이들이 나와 같은 고생을 […]

Continue reading about SVN + Redmine + Eclipse 연동하기.

pchero on November 25th, 2009

//      funcPtr.c//      //      Copyright 2009 Kim Sung-tae <pchero@MyNote>//      //      This program is free software; you can redistribute it and/or modify//      it under the terms of the GNU General Public License as published by//      the Free Software Foundation; either version 2 of […]

Continue reading about 함수 이름을 포인터에 할당하여 사용하기