Hi!
red floyd schrieb:
> 27. Execessive java-isms.
> e.g.:
> class C
> {
> // ...
> };
>
> int f()
> {
> C* c = new C;
> // do stuff and don't delete c
> }
27b. Why is this not working?
C c = new C;
Frank