I was just wondering if there's a difference between the following two lines:
objStudents.push_back({ "George", 1 });
objStudents.push_back(Student("Jack", 10));
Is one way more efficient than the other? Or is it just a different syntax that completes the same task?