http.tar.gz是用C语言编程的一个简单版webserver。
b)查看web服务器所在机器的ip:
c)打开能平同web服务器(192.168.31.143)机器的浏览器,网址输入192.168.31.143:
#include <stdio.h>
int main()
{
printf("hello world\n");
return 0;
}
b) 通过代码指定浏览器为utf-8编码,代码中加上头部元素信息:
<head>
<meta http - equiv = "content-type" content = "text/html;charset=utf-8">
< / head>
#include <stdio.h>
int main()
{
printf("<head>");
printf("<meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">");
printf("</head>");
printf("<html>");
printf("测试\n");
printf("</html>");
return 0;
}