c中奇怪错误的解释

use*_*975 0 c

正如我编译:

#include<stdio.h> 

main() 
{ 
print("hello\cworld"); 
}
Run Code Online (Sandbox Code Playgroud)

我收到了这个错误/输出:

警告:未知的转义序列'\ c'

C:\ Users\Abc\Appdata\Local\Temp/ccQLcaaa.o(.txt + ox32):abc.c:未定义引用'print'

ld返回1退出状态.

有人可以推断出这个错误并告诉我,在某些方面,编译器想要说什么(尤其是undefined reference"一个")

Mar*_*off 9

未定义的'print'参考

print不是声明的函数stdio.h.你的意思是肯定的printf.