很简单的问题,请教一下. 只要变换一下顺序就编译出错,这是为什么???
#include "stdio.h"#include "conio.h"
#include<stdlib.h>
void hello_word(void)
{
printf("hello word\n");
}
void three_word(void)
{
hello_word();
int counter;
for(counter=1;counter<=8;counter++)
printf("hello word\n");
}
int main(void)
{
three_word();
system("pause");
return 0;
}
变换一下其中的先后顺序后为什么编译不出来啊???(颜色部分为变换后的程序)
#include "stdio.h"
#include "conio.h"
#include<stdlib.h>
void three_word(void)
{
hello_word();
int counter;
for(counter=1;counter<=8;counter++)
printf("hello word\n");
}
void hello_word(void)
{
printf("hello word\n");
}
int main(void)
{
three_word();
system("pause");
return 0;
}