C++ 17 | New ways to Assign values to Variables
C++ 17 introduced many new ways to declare a variable. Earlier assignment and declaration was done using "=" Example: int a = 5; But now 2 more ways are introduced in C++17. They are: Constructor initialization: In this way, the value of the variable is enclosed in parentheses ( () ). In this way, v