class myClass {};
Simple question, what is the difference between myClass t(); and myClass t;? If any?
myClass t();
myClass t;
Thanks.