Compare commits

..

No commits in common. "171e2e38e6698886226d86fcff4a26fb4547bfc1" and "23e2579e56bfe1b0ffc193eae089a8b1ab27ca68" have entirely different histories.

7 changed files with 7 additions and 10 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
*.bin

View File

@ -1,6 +1,4 @@
# SBN C-Assigement
# SBN C Assigement
- [ ] Student Details
- [ ] Linked List
- [ ] Book Data Store
- [ ] Etc.
- [ ] ...

BIN
bookNode Executable file

Binary file not shown.

5
run
View File

@ -5,6 +5,5 @@
# echo "run the program..."
# ./program
rm -r single.bin
gcc work1/single.c -o single.bin && ./single.bin
gcc work1/single.c -o single
./single

BIN
single Executable file

Binary file not shown.

BIN
test Executable file

Binary file not shown.

View File

@ -1,4 +1,5 @@
#!/bin/bash
rm -r work1.bin
gcc work1.c -o work1.bin && ./work1.bin
rm -r work1
gcc work1.c -o work1 && ./work1