gcc 4.4.3 c89
I have the following code as a sample of what I am trying to do. I don't know the actual size of the array, until I enter the function. ...
Do these two lines of code achieve the same result? If I had these lines in a function, is the string stored on the stack in both cases? Is there a ...
I know, that C allow I do it.
char *array[] = {"String1", "String2",...};
but I wanna do it.
char **array or char *array[3];
array = {"String1", "String2"...};
Because I think that using a loop to fullfill ...
On Jun 30, 10:03*am, Peskov Dmitry }; > int main() { * *simple_class obj1(10); *// Initializing a single object through single parameter constructor * *return 0; > } > How to initialize the values of array of simple_class objects during declaration through the ...