1 #include <stdio.h> 2 3 int main(int argc, char **argv) 4 { 5 int counter = 10; 6 while(counter --> 0) 7 { 8 printf("%d ",counter); 9 } 10 printf("\nhello world\n"); 11 return 0; 12 }
打印输出:
9 8 7 6 5 4 3 2 1 0 hello world
原文:http://www.cnblogs.com/feiqiang/p/4990883.html