You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Void parameters in function declaration behave oddly right now.
int main(void) { }
produces an error of "function definition missing parameter name", and int func(void a, void b) { } is accepted by the compiler and does who-knows-what. The behavior of void in function declaration/definition parameters should be normalized.
The text was updated successfully, but these errors were encountered:
Void parameters in function declaration behave oddly right now.
produces an error of "function definition missing parameter name", and
int func(void a, void b) { }
is accepted by the compiler and does who-knows-what. The behavior of void in function declaration/definition parameters should be normalized.The text was updated successfully, but these errors were encountered: