/*一组无限循环代码小测试*/

# include <stdio.h>

int main(void)
{
    int i;
    for (i=1; i>0; ++i)
        printf("这里填写无限循环内容\n");

return 0;
}