柿子饼同学 发表于 2021-5-9 17:22:39

helloworld程序报错

#include <stdio.h>
int main(void)
{
        printf('hello world \n ');
        return 0;
}
用dev-c++写了这么一个程序,它报错了,这是怎么回事?
谢谢

王逗比666 发表于 2021-5-9 17:37:28

C语言的字符串必须要用“”包起来

柿子饼同学 发表于 2021-5-9 17:50:59

王逗比666 发表于 2021-5-9 17:37
C语言的字符串必须要用“”包起来

谢谢,py写习惯了{:10_266:}

baige 发表于 2021-5-9 17:51:08

printf("hello world \n ");

柿子饼同学 发表于 2021-5-9 17:51:58

baige 发表于 2021-5-9 17:51


谢谢{:10_254:}
页: [1]
查看完整版本: helloworld程序报错