출처 : 보물창고

CString -> int 변환, int -> CString 변환

CString → int
int형 = _ttoi(CString형);


int → CString
CString형.Format( _T("%d"), int형);


Help -> Help Contents


'Programming > PIC - Microchip' 카테고리의 다른 글

Integer Data Types  (0) 2016.04.15

Help -> Help Contents


'Programming > PIC - Microchip' 카테고리의 다른 글

Delay Function  (0) 2016.04.15

http://www.mediacollege.com/cgi-bin/man/page.cgi?topic=find


NON-BUGS

       $ find . -name *.c -print
       find: paths must precede expression
       Usage: find [-H] [-L] [-P] [path...] [expression]

       This  happens  because  *.c has been expanded by the shell resulting in
       find actually receiving a command line like this:

       find . -name bigram.c code.c frcode.c locate.c -print

       That command is of course not going to work.  Instead of  doing  things
       this way, you should enclose the pattern in quotes:
       $ find . -name ?*.c? -print


'Programming > Linux Coding' 카테고리의 다른 글

Linux 디바이스 드라이버의 작성  (0) 2016.04.27
자신만의 Command 만들기 - alias  (0) 2016.04.26
Linux Commands  (0) 2016.04.14
SVN(Subvision) 간단히 사용하기  (0) 2016.04.14
Ex10. Makefile - lv4  (0) 2016.02.25

'Programming > Linux Coding' 카테고리의 다른 글

자신만의 Command 만들기 - alias  (0) 2016.04.26
find  (0) 2016.04.14
SVN(Subvision) 간단히 사용하기  (0) 2016.04.14
Ex10. Makefile - lv4  (0) 2016.02.25
Ex10. Makefile - lv3  (0) 2016.02.25

'Programming > Linux Coding' 카테고리의 다른 글

find  (0) 2016.04.14
Linux Commands  (0) 2016.04.14
Ex10. Makefile - lv4  (0) 2016.02.25
Ex10. Makefile - lv3  (0) 2016.02.25
Ex10. Makefile - lv2  (0) 2016.02.24

seaboy41 - 네이버 블로그

http://blog.naver.com/seaboy41/40043502606



+ Recent posts