Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Readme.md and Added Deepak_20bcs102.cpp #1

Merged
merged 1 commit into from
Jan 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@

`git clone https://github.com/<YOUR_USERNAME>/Workshop_git.git`

Note: You can clone anywhere you want
Note: You can clone anywhere you want but prefer Desktop for first time.

1. Add a file in TEST Folder with YOURNAME_ROLL
(Eg: Deepak_20bcs102.pdf, Deepak_20bcs102.txt, Deepak_20bcs102.py, Deepak_20bcs102.cpp etc)
1. Add a file in <strong>TEST</strong> Folder with File Name: <strong>Firstname_rollno.fileextension</strong>.

(Eg: Deepak_20bcs102.pdf, Deepak_20bcs102.txt, Deepak_20bcs102.py, Deepak_20bcs102.cpp etc)

2. You can add anything Inside the file (Eg: Code Script, Your Name, Class, Roll etc).

Expand Down
9 changes: 9 additions & 0 deletions TEST/Deepak_20bcs102.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout<<"GIT PRACTICE"<<endl;
return 0;
}