I came across this C program in a blog post:
main()
{
int n;
n = 151;
f(n);
}
f(x)
int x;
{
printf("%d.
", x);
}
The post doesn't explain it. Can anybody explain what this weird function definition means?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…