刚学c语言就遇到问题了,求问我这个是比着b站up主写的,为啥我的报错啊
需要#include <stdio.h>另外“/n”是字符“/”和字符“n”,“\n”才是换行符
你使用了printf函数却没有引用stdio.h
#include <stdio.h> int main() { printf("aaaa/n"); }