6 ms·
It confuses me that it doesn't work for functions. like int main() return 0;
by PurplePanda 12y ago
It confuses me that it doesn't work for functions. like
int main() return 0;
- pdw 12y agoIn K&R C, the function braces serve to separate parameter declarations and local variables: int main(argc, argv) int argc; char **argv; { int local; }
- PurplePanda 12y agoThanks, I haven't seen that syntax before.