今天刚学到C的一个新玩法,非常有意思,叫趋向于,写作“-->”,比如说如果要实现一个倒数的程序,我们可以定义一个变量 counter,然后让它趋向于0...
#include <stdio.h> int main(int argc, char **argv)
{
int counter = ;
while(counter --> )
{
printf("%d ",counter);
}
printf("\nhello world\n");
return ;
}
打印输出:
hello world