curated list of lab programs for VTU - Programming with C and Data Structures
Fork this Repo and Clone it to your local machine.
$ git clone https://github.com/YOUR_USERNAME/pcd-lab-programs.git
$ cd pcd-lab-programs
Create a new branch with your name and program number.
eg. haxzie-lab2
$ git branch haxzie-lab2
$ git checkout haxzie-lab2
replace haxzie-lab2
with your username and proper lab program number. This will be your branch name.
Create a new folder with the following name format.
Lab<Number>-<ProgramName>
eg: Lab1-StackOperations
Create a new file inside this folder with the name Readme.md
and add the Program Description or Question related to the program.
Create a new file with appropriate extension with the actual program
Stage and Commit all your changes
$ git add -A
$ git commit -m "Your Commit Message here"
Push the changes to your repository
$ git push origin YOUR_BRANCH_NAME
Replace YOUR_BRANCH_NAME with the name of the branch you created, here haxzie-lab2
Return to this original repository, You'll see a big green button saying. Compare and Pull Request. Submit the PR and Enjoy 🎉