i have a 2D array of emp[20][10]
How can i do it such that it only prints out the selected index like emp[0][0] to emp[0][10] etc.
It will print around more than the selected..
for(int i= 0; i < 20; i++)
{
for (int j = 0; j < 10; j++)
{
emp[0][j].viewEMP();
}
}