标签: c
#include<stdio.h> int main() { static int i=5; if(--i){ main(); printf("%d ",i); } }
输出:0 0 0 0 这里循环执行5次。之后它达到'0'。控件应该退出循环。但它打印'0'四次。