Question { 8929 }
Why all programming languages have main as a execution
starting point?
Answer
All the languages follows a centralized design patter, that
is they must start program execution from main() method
onwards.
But in java programing language without main() method also
we can execute the programs.