Hi,
Please some one clarify what does the below snippets mean and the compiler assumptions.
which one is the correct one to use, what is the problem with others.
main()
{
}
void main()
{
}
int main()
{
}
int main()
{
return 0;
}