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
The type of main is int main(int, char **), and using int main(void) is undefined behaviour according to the standard. The way in which a main ignoring arguments should be specified is int main().