c语言编写helloworld的问题!!!!

这是我用lcc编写的:
#include <stdio>

void main(void)
{
printf("\nhello world!")
}
然后它说源文件已经被修改。然后我点了全部保存。结果就这样:
C:\Program Files\lcc\make.exe:Clouldn't open c:\programe files\lcc\src GetLastError()=5
编译和连接耗时:0.0秒 返回代码:1
我继续执行。结果就出来了一个err文档。不是exe程序。
怎么办啊??!!请高手快快出手相助!!!!多谢了!!
谢谢5楼的高手!可是我打了分号后还是一样!!!!
还是老问题!!出不来!!。。。。。。。 怎么办??

#include <stdio.h>

void main(void)
{
printf("\nhello world!");
}
我滴个神啊!你真是疏忽啊!
printf后面那句的分号你貌似忘打了哦!记得打上!(这种小错误以后千万别再犯咯!)
你把这个文件以前的源文件都删掉!
然后在写一遍,然后保存到其他盘!在运行试试!
呵呵!
谢谢,希望我的答案能帮助到你!
温馨提示:答案为网友推荐,仅供参考
第1个回答  2009-07-05
#include <stdio.h>

改用vs2008吧,这套的语法格式各其它较6.0要标准!
第2个回答  2009-07-04
朋友,我帮你修改了错误,代码如下:
#include <stdio.h>

void main()
{
printf("\nhello world!");
}
第3个回答  2009-07-04
#include <stdio>
改为
#include <stdio.h>
即可解决
第4个回答  2009-07-04
#include <stdio> <-- 要 .h啊 这里文件名是什么就写什么 ,不带省略的