#include int f(const int k) { printf("%d\n", k); } int main() { int i; for (i=0; i<2; ++i) { f(i); } return 0; }