Skip to content

Commit 5f7410b

Browse files
committed
0.4.0
removed .exe extension from make.bat files
1 parent 2a7d0e9 commit 5f7410b

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ For example:
5656
C:\GitHub\OOP-in-C>cd encapsulation
5757
C:\GitHub\OOP-in-C\encapsulation>make
5858
59-
gcc shape.c main.c -o oop_in_c.exe
60-
oop_in_c.exe
59+
gcc shape.c main.c -o oop_in_c
60+
oop_in_c
6161
6262
Shape s1(x=0,y=1)
6363
Shape s2(x=-1,y=2)

encapsulation/make.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
gcc shape.c main.c -o oop_in_c.exe
2-
oop_in_c.exe
1+
gcc shape.c main.c -o oop_in_c
2+
oop_in_c

encapsulation/oop_in_c.exe

0 Bytes
Binary file not shown.

inheritance/make.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
gcc shape.c rect.c main.c -o oop_in_c.exe
2-
oop_in_c.exe
1+
gcc shape.c rect.c main.c -o oop_in_c
2+
oop_in_c

inheritance/oop_in_c.exe

246 KB
Binary file not shown.

polymorphism/make.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
gcc shape.c rect.c circle.c main.c -o oop_in_c.exe
2-
oop_in_c.exe
1+
gcc shape.c rect.c circle.c main.c -o oop_in_c
2+
oop_in_c

polymorphism/oop_in_c.exe

248 KB
Binary file not shown.

0 commit comments

Comments
 (0)