i have this content in my array of string:
string ip[2]={{"11000100001000"},{"1011111011101101101010"}};
how do i covert it to store the same in an integer array of int ipip[2][length of each of those strings] ?
Are your strings always just 0 and 1s (are they binary?)
And not sure about this:
int ipip[2][length of each of those strings]
Andy