Re: [algogeeks] want to create a table of words having 2 columns seperate for name and surname

2012-06-06 Thread daksh_ddt
its only for 2 words in a namejohn kennedy On Tuesday, June 5, 2012 3:22:44 PM UTC+5:30, Prem wrote: > > More than a programming, I believe this is a logical question. Some of > the assumption you can take into consideration is how many names a > particular person can possibly have. say, Jo

Re: [algogeeks] want to create a table of words having 2 columns seperate for name and surname

2012-06-05 Thread Prem Krishna Chettri
More than a programming, I believe this is a logical question. Some of the assumption you can take into consideration is how many names a particular person can possibly have. say, John F Kennedy, So, your array now can't hold 3 names in two dimension, so what you wanna do, increase an array of one

[algogeeks] want to create a table of words having 2 columns seperate for name and surname

2012-06-05 Thread daksh_ddt
#include #include using namespace std; int main() { char crew[2][2][10]; cin>>crew[0]; cout<>crew[1]; cout