#include #include #include #include #include using namespace std; void method1( vector v1 ) { } void method2( set s1 ) { } int main() { //Define an initializer list of 3 elements 1 2 3 //using just the curly braces. Do not use any variables //Call the method1 and method2 using this approach. method1( {1,2,3} ) ; method2( {1,2,3} ) ; return 0; }