照书上打的一段代码,只是为了显示一个很简单的CGI程序,用ARM-LINUX-GCC编译后传到目标板上就是打不开,直接./XX.CGI 报 Segmentation fault 错误,其他.CGI文件是可以运行的 错误在哪啊 郁闷 我开始学别笑我菜
#include <stdio.h>
void main()
{
printf("Content - type:text /html \n\n");
printf(" <html>\n");
printf(" <head> <title>CGI TEST < /title> < /head>");
printf(" <body>\n");
printf(" <h1>Hello,world < /h1>\n");
printf(" </body>\n");
printf(" </html>\n");
exit(0);
}
------解决方案--------------------
顶。
------解决方案--------------------
printf("Content - type:text /html \n\n");
-->
printf("Content-type: text/html\n\n");