时间:2023-12-03 12:00:01 | 来源:网站运营
时间:2023-12-03 12:00:01 来源:网站运营
如何用 c 语言搭建一个简单的网站?:安装ncapt install nc
写入web.c#include <stdio.h>int main(){ void html(char *txt); printf("HTTP/1.1 200 OK/r/n"); printf("server: clang web 1.1/r/n"); printf("/r/n"); html("hello clang web"); html("test clang web"); printf("/r/n/r/n"); return 0;}void html(char *txt){printf("<p>%s</p>",txt);}
直接gcc web.c -o web编译nc -l -p 8080 -e "./web"
访问127.0.0.1:8080可以显示hello clang web要一直后台运行,写一个脚本
test clang web
while truedonc -l -p 8080 -e "./web"done
运行sh web.sh
这是Linux下的方法,Windows下同理。关键词:简单,语言