Hello, I'm new to C++ with a fair experience in java.
I would like to know the difference between
Ob o* = new Ob();
and
Ob o = new Ob();
I know the first allocates a block of memory and creates a pointer which keeps the address of this block.
What about the second object initialization?
Thank you