求高手帮我看看这个程序
#include <time.h>#include<stdio.h>
int main(void)
{
int now = clock();
printf("hello!");
for( ;clock() - now < CLOCKS_PER_SEC ; )
printf("\r");
return 0;
}
-------------------------------------------------分割线------------------------------------------------
为什么这个程序运行后会显示出hello!1秒就消失了呢??FOR语句中那堆东西是什么意思呢?求高手解答啊!!这程序太神奇了!