What will happen if main called in side main function?



void main()
{
main();
}

int main()
{
main();
}

.