#include
int mainv ()
{
int age = 18; /*这里定义年龄*/
printf("我今年%d岁!\n",age);
return 0; }
为什么我这个在DEV上怎么运行不了
E:\私人文件\DEV-C++\编译文件\collect2.exe [Error] ld returned 1 exit status
没有错误提示但是也运行不了
把 mainv 改成 main 试试?
一定要记住是main函数呢
#include int main() { int age = 18; /*这里定义年龄*/ printf("我今年%d岁!\n",age); return 0; }