C HTML接口實例代碼
#include <stdio.h> #include <stdlib.h> #include <string.h> //設置content-type為text/html,顯示html頁面 void setContentType(){ printf("Content-type:text/html\n\n"); } int main(){ setContentType(); printf("<html>"); printf("<head>"); printf("<meta charset='utf-8'>"); printf("<title>This is a title.</title>"); printf("</head>"); printf("<body>"); printf("<h1>Hello World!</h1>"); printf("<p>This is a paragraph.</p>"); printf("</body>"); printf("</html>"); return 0; }
上面的C示例代碼演示了如何使用CGI技術在Web頁面上運行,CGI技術可以讓您的C代碼直接在服務器上面運行,從而生成動態網頁。
上一篇dockertcp丟包
下一篇c html代碼高亮顯示