Multiple distinct objects: Difference between revisions

Content added Content deleted
m (Link to sequence.)
No edit summary
Line 35:
AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz
</pre>
 
=={{header|AutoHotkey}}==
{{works with|AutoHotkey_L}}
<lang AutoHotkey>a := []
Loop, %n%
a[A_Index] := new Foo()</lang>
 
=={{header|C}}==
<lang c>foo *foos = malloc(n * sizeof(*foos));