(1).编译单个源文件,创建源文件hello.c,源文件内容如下:
#include <stdio.h> int main() { /**注释**/ printf("Hello Jiufeng"); return 0; }
编译源文件:
gcc hello.c
编译后生成可执行文件a.out
(2).编译多个源文件,已有以下几个源文件:
(2.1).a.c
#include <stdio.h> #include "func.c" int main() { int num = add(1,1); printf("the result is %d \r\n",num); return 0; }
(2.2).func.c
/**加法**/ int add(int num1,int num2);
(2.3).b.c
/**加法实现**/ int add(int num1,int num2) { return num1+num2; }
编译命令:
gcc a.c b.c func.c -o main.out
多个源文件编译为main.out
【一】.钩子文件的设置和创建(1).打开hooks目录,可以看到有一个post-commit.tmpl文件,这是一个模板文件。复制一份,重命名为post-commit,将其用户组设为www,并设置为可执行。chown www:www post-commitchmod +x post-commit(2...
Application 对象用于存储和访问来自任意页面的变量,类似 Session 对象。不同之处在于所有的用户分享一个 Application 对象,而 session 对象和用户的关系是一一对应的。很多的书籍中介绍的Application对象都喜欢以统计在线人数来介绍Application 对象...
1.关机Process.Start("shutdown", "-s -t 0"); 2. 注销 Proc...
public static string GetMD5(string str) { //创建MD5对象 MD5 md5 = MD5.C...
private const string fantizi = "高久峰是個程序員"; private const string jiantizi = "高久峰是个程序员...
首先网页全部是纯静态的文件,本地测试正常访问,服务器端无法加载CSS,并且无法查看CSS文件的内容。 解决方案:关闭网站的压缩->>静态压缩和动态压缩...