i am using an two dimensional arrays... and i inputed five names on it..
anyone can help me on how to output the five names??
i dont need the whole program..
i just need the code...
thnx... ^_^

for a 2-dim char array values can be extracted like

char *a[] = {"tom","som"};
cout << a[0] << "  " << a[1] << endl;
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.