c - warning: implicit declaration of function ‘printf’

后端 未结 3 903
走了就别回头了
走了就别回头了 2020-12-29 17:39

I know alot of similar questions were asked before but i couldn\'t find something that would fix this warning i get:

MyIntFunctions.c:19:2: warning: implicit         


        
3条回答
  •  伪装坚强ぢ
    2020-12-29 18:26

    the warning or error of kind IMPLICIT DECLARATION is that the compiler is expecting a Function Declaration/Prototype..

    It might either be a header file or your own function Declaration..

提交回复
热议问题