Warning-incompatible implicit declaration of built-in function 'malloc'
CODEDRAGON ㆍDevelopment/C, C++
반응형
경고메시지
incompatible implicit declaration of built-in function 'malloc' |
|
발생 원인
필요한 header file을 include 하지 않은 경우 발생
해결방법
#include <stdlib.h>를 추가
|
'Development > C, C++' 카테고리의 다른 글
Ex21-전체 2차원 배열의 값 출력 (0) | 2015.08.04 |
---|---|
Ex20-2차원 배열의 값 출력 (0) | 2015.08.03 |
void형 포인터 (0) | 2015.07.31 |
포인터와 함수 - 값에 의한 호출(Call By Value), 주소에 의한 호출(Call By Reference) (0) | 2015.07.31 |
열거형(enumerate) (0) | 2015.07.31 |