We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f67f4a3 commit d68ff01Copy full SHA for d68ff01
Cpp'11 New features/Initializer-lists.cpp
@@ -0,0 +1,11 @@
1
+#include<iostream>
2
+#include<vector>
3
+
4
+using namespace std;
5
6
+int main() {
7
8
+ vector<int> numbers{ 1, 3, 4 6 };
9
10
+ return 0;
11
+}
0 commit comments