I am trying to create a new integer array which is derived from a string of characters. For example :
char x[] = \"12334 23845 32084\"; int y[] = { 12334,
Of course it's possible. This is the way I prefer: int func(int** results)
int func(int** results)
Function returns number of elements in results. results is a pointer to an int array.
results