折折星 发表于 2022-8-4 16:03:59

在第一节课打印Hello World中遇见这样的错误怎么办

test.c:1:7: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’ token
nclude<studio.h>
       ^

折折星 发表于 2022-8-4 16:05:03

$ mkdir FishC
$ cd FishC/
$ mkdir sle2
$ cd sle2
$ vi test.c
$ gcc test.c -o test
test.c:1:7: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’ token
nclude<studio.h>
       ^

临时号 发表于 2022-8-4 16:15:07

本帖最后由 临时号 于 2022-8-4 16:17 编辑

第一行改为
#include <stdio.h>
页: [1]
查看完整版本: 在第一节课打印Hello World中遇见这样的错误怎么办