1. gedit编写C代码
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("Hello, David\n");
return 0;
}
int main(int argc, char *argv[])
{
printf("Hello, David\n");
return 0;
}
2. 编译
gcc -o hello hello.c
3. 执行
./hello
2022-06-02 04:22:40
1. gedit编写C代码
2. 编译
gcc -o hello hello.c
3. 执行
./hello
下一篇:js获取网页的各种高度