Skip to content

Commit a28ed09

Browse files
committed
.
1 parent a78baaa commit a28ed09

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

Advanced-Cpp-Programming.vcxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
<ClInclude Include="resource.h" />
132132
</ItemGroup>
133133
<ItemGroup>
134-
<ClCompile Include="Standard Template Library\Vectors-and-memory.cpp" />
134+
<ClCompile Include="Standard Template Library\2Dim-Vectors.cpp" />
135135
</ItemGroup>
136136
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
137137
<ImportGroup Label="ExtensionTargets">

Advanced-Cpp-Programming.vcxproj.filters

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</ClInclude>
2121
</ItemGroup>
2222
<ItemGroup>
23-
<ClCompile Include="Standard Template Library\Vectors-and-memory.cpp">
23+
<ClCompile Include="Standard Template Library\2Dim-Vectors.cpp">
2424
<Filter>Source Files</Filter>
2525
</ClCompile>
2626
</ItemGroup>
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Learn Advance C++ Programming
2+
// Two-Dimensional Vectors
3+
4+
#include<iostream>
5+
#include<vector>
6+
#include<string>
7+
using namespace std;
8+
9+
int main() {
10+
11+
12+
return 0;
13+
}

0 commit comments

Comments
 (0)