Suppose you are currently in C drive and want to switch to D drive, the command for this is :
AD;
BD,
CD:
DD&
AD;
BD,
CD:
DD&
Related Questions:
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}