Is return 0 still important in the main function?
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}
Is return 0 still important in the main function?
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}