Y
Hacker News
new
|
ask
|
show
|
jobs
by
pdw
4229 days ago
In K&R C, the function braces serve to separate parameter declarations and local variables:
int main(argc, argv) int argc; char **argv; { int local; }
1 comments
PurplePanda
4229 days ago
Thanks, I haven't seen that syntax before.
link