Link to install Visual Studio with C++:
https://youtu.be/ThmtfSdKuGo
List of manipulators:
https://www.geeksforgeeks.org/manipulators-in-c-with-examples/
List of escape sequence:
https://en.cppreference.com/w/cpp/language/escape
0:00:40 iostream header file (cin and cout)
0:03:55 Get user input (cin)
0:06:55 Display output (cout)
0:08:43 Manipulator: New line of output (endl)
0:10:16 Escape sequece: New line of output (\n)
0:11:06 Formatting output using manipulators
0:13:20 Parameterized manipulators: setw(n)
0:16:50 Parameterized manipulators: setfill(ch)
0:18:26 Parameterized manipulators: setprecision(n)
0:20:43 Non-Parameterized manipulators: fixed (used with & without setprecision)
0:23:20 Non-Parameterized manipulators: showpoint
0:24:06 Non-Parameterized manipulators: left & right
0:26:43 Other I/O manipulators: showpoint, noshowpoint, showpos, noshowpos,scientific, dec, hex, oct.
0:29:11 Preview Lesson 4