Skip to content

Commit 5fe4d5a

Browse files
Preeti amuryasunilkumarmaurya786693
authored andcommitted
added basic structure of cpp
1 parent aa53760 commit 5fe4d5a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

basics/basicstrictutre.cpp

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#include <bits/stdc++.h>
2+
using namespace std;
3+
4+
int main()
5+
{
6+
freopen("i.txt", "r", stdin);
7+
8+
int n;
9+
cin >> n;
10+
cout << "Sfds" << n;
11+
cout << endl;
12+
vector<int>arr={1,2,3};
13+
cout<<arr.size();
14+
15+
return 0;
16+
}

0 commit comments

Comments
 (0)