숫자를 입력하면 N * N 크기의 행렬이 만들어지고, 숫자가 달팽이 등껍질처럼 입력되는 재미있는 알고리즘. Snail_Algotithms (Language : c) 1. /*************************************************************************** 2. * Snail_Algorithms.c 3. * 4. * Wed Jan 2 16:45:57 2008 5. […]
컴파일 도중 이상한 경고가 발생했다… #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable […]
유닉스 프로그래밍책을 보고 열심히 따라 치는중….이상한 에러를 발견했다. #include <sys/filio.h> – 그런파일을 찾을 수 없음. 분명히 책에는 이렇게 입력하라고 나와있었다. 하지만 컴파일을 하니 발생하는 에러… 무엇이 문제일까…답은 금방 찾았다. sys/filio.h 파일은 Sun 혹은 Unix 에서 사용하는 파일이라고 한다. 해결책은 #include <sys/filio.h> -> #include <sys/ioctl.h> 으로 바꾸어주면 된다. 혹은… (Language : c) ifdef HAVE_SYS_FILIO_H […]
Recent Comments