Let us say I have a class named "Car". Let us also say that when initializing the object, you give two variables of type int. In the past, when ever I would want to create this object, I would do:
Car myCar(10, 5);
but I recently saw a slitly different way to do this:
Car myCar{10, 5};
What is the difference of using () or using {}?