Possible Duplicate:
Why are declarations put between func() and {}?
In C, what does it mean when I declare a variable following a function signature, before the function body?
Example:
int foo (i) int i {
printf ("the value of variable 'i' is: %d", i);
return i;
}
When I compile the the code in addition to initializing variable i, I get a compile error: "cannot initialize parameter: p"