Please, tell me from where execution starts in c++, hope your answer is “from main”.
Then what about this?
class abc
{
public:
abc()
{
cout<<"hello";
}
};
const abc obj;
int main( )
{
cout<<"Main";
}
output:
helloMain
Please elaborate.
From your comments to the other answers strut, it sounds like a 10,000 foot view might assist in understanding.
The exact steps involved in launching an application differs between OSes, compilers, and programming languages but the “general” process is essentially the same.