Given a string of 5 names( jonhson, mabel ,anthony, kwame and josef) write the code for the display of :
a) the third element of the array
b) the third element of the second
#include <iostream.h>
void main()
{
char names[5][10]={"jonhson", "mabel", "anthony", "kwame", "josef"};
cout<<names[2]<<"\n"; //printing 3-rd element, third element has index 2
cout<<names[1][2]<<"\n"; //printing 3-rd element of the 2-nd
int i;
cin>>i; //delay
}