Hi, can someone make me clear what exactly happens at compile time and run time? For e.g.. when we say
cout<< "enter a variable";
cin>>var;
what happens at compile time and what happens at run time? does the variable that the user enters is taken at runtime?
I am asking this because they say command line arguments are executed at runtime and are thus faster.
I first want to make it clear what it means by compile time and runtime if anyone can explain it with the scenario mentioned above.
Thanks in advance