C_C++

pchero on August 11th, 2010

 KLDP 에서 자료를 검색하던 중 GDB와 관련된 매우 유용한 글타래를 발견하고 여기에 링크를 걸어둔다.  http://kldp.org/node/71806

Continue reading about GDB 사용 관련

pchero on August 3rd, 2010

 HPUX 를 사용하게되면 필연적으로 aCC와 친해져야 하는데, 보통의 gcc, g++과는 옵션 및 사용방법이 틀려 고생하는 경우가 있다.  아래의 링크에 aCC 매뉴얼을 링크해 두었다. http://docs.hp.com/en/8/commandsyntax.htm

Continue reading about HPUX 컴파일러 aCC 옵션

pchero on May 17th, 2010

 C++ 프로그래밍을 공부하던 중, 예제 프로그램을 컴파일하다 다음과 같은 에러를 발견했다.  Description    Resource    Path    Location    Type‘nocreat’ is not a member of ‘std::ios’    Config.cpp    /TEMS/src    line 40    C/C++ Problem  환경은 이클립스 3.5.2 버전이었으며, g++ 버전은 version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) 이었다.  문제의 원인을 찾기 위해 구글링을 해보니 답은 간단했다. […]

Continue reading about ios::nocreate

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 함수 이름을 포인터에 할당하여 사용하기

pchero on April 27th, 2008

* ESC 문자열과 의미  ESC 문자열 ASCII CODE 의 미 n 10 new line : 새로운 줄의 시작 t 9 tab : 커서 또는 프린터 헤드를 tab 만큼 이동 b 8 backspace : 뒤로 한 칸 움직임 r 13 carriage return : 그 줄의 처음으로 이동 f 12 form feed : 프린터의 종이를 다음 페이지로 […]

Continue reading about printf scanf 특수문자 도표