The answers i found sucked so maybe someone can shed some new light on the situation.
I have a 2-dimensional array of string type
string string1[2][4];
string1[0][0] = integer
string1[0][1] = string
string1[0][2] = float
string1[0][3] = integer
i need to read all of it into 1 two-dimensional array but when its a string type how do i get the integers to be an integer???
I have a 2-dimensional array of string type
string string1[2][4];
string1[0][0] = integer
string1[0][1] = string
string1[0][2] = float
string1[0][3] = integer
i need to read all of it into 1 two-dimensional array but when its a string type how do i get the integers to be an integer???
Comment