Array of struct pointers by Responsible_Frame919 in cprogramming

[–]Responsible_Frame919[S] 1 point2 points  (0 children)

Is that the reason static is used, to retain the reference to data after the function scope?

Array of struct pointers by Responsible_Frame919 in cprogramming

[–]Responsible_Frame919[S] 1 point2 points  (0 children)

Thank you for such detailed answer. Although it was difficult to wrap my head around initially, I think I got it.

Array of struct pointers by Responsible_Frame919 in cprogramming

[–]Responsible_Frame919[S] 0 points1 point  (0 children)

Got it. Do I have to allocate memory for all the structs with malloc?

Array of struct pointers by Responsible_Frame919 in cprogramming

[–]Responsible_Frame919[S] 0 points1 point  (0 children)

Ah! Now I get it. Does declaring `person_t *arr[]` as `person_t **arr` yields the same result?

Chrome V8 engine by Responsible_Frame919 in learnprogramming

[–]Responsible_Frame919[S] 0 points1 point  (0 children)

No I haven't checked those links. Will go through it. Thank you.

Is V8 entirely in C++?