15158846557 在线咨询 在线咨询
15158846557 在线咨询
所在位置: 首页 > 营销资讯 > 网站运营 > 如何用 c 语言搭建一个简单的网站?

如何用 c 语言搭建一个简单的网站?

时间:2023-12-03 12:00:01 | 来源:网站运营

时间:2023-12-03 12:00:01 来源:网站运营

如何用 c 语言搭建一个简单的网站?:安装nc

apt install nc写入web.c

vim 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
要一直后台运行,写一个脚本

vim web.sh

while truedonc -l -p 8080 -e "./web"done运行

sh web.sh这是Linux下的方法,Windows下同理。

关键词:简单,语言

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭