class Test{
public:
Test() {cout << "ctor\n";}
};
int main(int argc, char** argv){
Test t1; // объект№ 1
Test t2(); // объект№ 2
}
#include <iostream>
using namespace std;
class Test{
public:
Test() { cout << "ctor\n"; }
};
int main(int argc, char** argv){
Test t1; // объект№ 1
Test t2(); // прототип функции
t2(); // вызов функции
}
// сама фунция
Test t2() {
Test t;
return t;
}