例如,以下程序打印数字10十次:
#include <stdio.h>
void f(void);
int main(void)
{
int i;
for (i = 0; i<10; i++) f();
return 0;
}
void f(void)
{
int j = 10;
printf("%d ", j);
j++; /* this line has no lasting effect */
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266417.html