Skip to content

Commit 58b0e6a

Browse files
YusufYusuf
authored andcommitted
Add project files.
1 parent 44b761c commit 58b0e6a

File tree

246 files changed

+6301
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

246 files changed

+6301
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#include <stdio.h>
2+
#include <stdlib.h>
3+
4+
int main()
5+
{
6+
printf("Yusuf Ocal!\n");
7+
return 0;
8+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
2+
<CodeBlocks_project_file>
3+
<FileVersion major="1" minor="6" />
4+
<Project>
5+
<Option title="İlk Deneme" />
6+
<Option pch_mode="2" />
7+
<Option compiler="gcc" />
8+
<Build>
9+
<Target title="Debug">
10+
<Option output="bin/Debug/İlk Deneme" prefix_auto="1" extension_auto="1" />
11+
<Option object_output="obj/Debug/" />
12+
<Option type="1" />
13+
<Option compiler="gcc" />
14+
<Compiler>
15+
<Add option="-g" />
16+
</Compiler>
17+
</Target>
18+
<Target title="Release">
19+
<Option output="bin/Release/İlk Deneme" prefix_auto="1" extension_auto="1" />
20+
<Option object_output="obj/Release/" />
21+
<Option type="1" />
22+
<Option compiler="gcc" />
23+
<Compiler>
24+
<Add option="-O2" />
25+
</Compiler>
26+
<Linker>
27+
<Add option="-s" />
28+
</Linker>
29+
</Target>
30+
</Build>
31+
<Compiler>
32+
<Add option="-Wall" />
33+
</Compiler>
34+
<Unit filename="main.c">
35+
<Option compilerVar="CC" />
36+
</Unit>
37+
<Extensions>
38+
<lib_finder disable_auto="1" />
39+
</Extensions>
40+
</Project>
41+
</CodeBlocks_project_file>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
2+
<CodeBlocks_layout_file>
3+
<FileVersion major="1" minor="0" />
4+
<ActiveTarget name="Debug" />
5+
<File name="main.c" open="0" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
6+
<Cursor>
7+
<Cursor1 position="101" topLine="0" />
8+
</Cursor>
9+
</File>
10+
</CodeBlocks_layout_file>
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
#include <stdio.h>
2+
#include <stdlib.h>
3+
4+
int main()
5+
6+
/*{ // Ekrana sayý yazdýrma
7+
int a=4;
8+
printf("Sayim = %d",a);
9+
//Týrnaklar içinde ne kadar boþluk býrakýrsan býrak hepsini çýktýda gösterecektir. Ayrýca = ifadesi çýktýda sorun çýkarmýyor.
10+
}*/
11+
12+
13+
14+
/*{ // Ekrana karakter yazdýrma
15+
char a='H';
16+
printf("Karakterim = %c",a);
17+
}*/
18+
19+
20+
21+
/*{
22+
float a=3.14;
23+
printf ("Ondalik sayim = %f",a);
24+
// Bu þekilde yazýlýrsa Ekranda 3.140000 yazacaktýr. Çünkü float noktadan sonra 6 basamak yer kaplar.
25+
}*/
26+
27+
28+
29+
/*{
30+
int a=3.14;
31+
printf ("Tamsayim = %d",a);
32+
// Bu þekide tamsayý istediðimiz zaman ekranda sadece 3 yazacaktýr. Çünkü float sadece tam sayý kýsmýný kapsar.
33+
}*/
34+
35+
/*{
36+
float a=3.14;
37+
printf("Sayiniz = %.2f",a);
38+
// Bu şekilde yazarsak noktadan sonra sadece 2 basamak görürüz. Yani ekranda 3.14 yazacaktır.
39+
}*/
40+
41+
42+
/*{
43+
float a=3.14;
44+
printf("Sayiniz = %.1f",a);
45+
// Bu şekilde yazarsak noktadan sonra sadece 1 basamak görürüz. Yani ekranda 3.1 yazacaktır.
46+
}*/
47+
48+
49+
/*{
50+
float a=3.14;
51+
printf("Sayiniz = %.5f",a);
52+
// Bu şekilde yazarsak noktadan sonra sadece 4 basamak görürüz. Yani ekranda 3.14000 yazacaktır.
53+
}*/
54+
55+
/*{
56+
float a=3.14;
57+
printf("Sayiniz = %.0f",a);
58+
// Bu şekilde yazarsak noktadan sonra sadece 0 basamak görürüz. Yani ekranda 3 yazacaktır.
59+
}*/
60+
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
2+
<CodeBlocks_project_file>
3+
<FileVersion major="1" minor="6" />
4+
<Project>
5+
<Option title="İlk Denemeler" />
6+
<Option pch_mode="2" />
7+
<Option compiler="gcc" />
8+
<Build>
9+
<Target title="Debug">
10+
<Option output="bin/Debug/İlk Denemeler" prefix_auto="1" extension_auto="1" />
11+
<Option object_output="obj/Debug/" />
12+
<Option type="1" />
13+
<Option compiler="gcc" />
14+
<Compiler>
15+
<Add option="-g" />
16+
</Compiler>
17+
</Target>
18+
<Target title="Release">
19+
<Option output="bin/Release/İlk Denemeler" prefix_auto="1" extension_auto="1" />
20+
<Option object_output="obj/Release/" />
21+
<Option type="1" />
22+
<Option compiler="gcc" />
23+
<Compiler>
24+
<Add option="-O2" />
25+
</Compiler>
26+
<Linker>
27+
<Add option="-s" />
28+
</Linker>
29+
</Target>
30+
</Build>
31+
<Compiler>
32+
<Add option="-Wall" />
33+
</Compiler>
34+
<Unit filename="main.c">
35+
<Option compilerVar="CC" />
36+
</Unit>
37+
<Extensions>
38+
<lib_finder disable_auto="1" />
39+
</Extensions>
40+
</Project>
41+
</CodeBlocks_project_file>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# depslib dependency file v1.0
2+
1636119874 source:d:\for c ve c++\02_\main.c
3+
<stdio.h>
4+
<stdlib.h>
5+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
2+
<CodeBlocks_layout_file>
3+
<FileVersion major="1" minor="0" />
4+
<ActiveTarget name="Debug" />
5+
<File name="main.c" open="0" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
6+
<Cursor>
7+
<Cursor1 position="1446" topLine="30" />
8+
</Cursor>
9+
</File>
10+
</CodeBlocks_layout_file>
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
2+
<CodeBlocks_project_file>
3+
<FileVersion major="1" minor="6" />
4+
<Project>
5+
<Option title="03_Kullanıcıdan Değer Alma" />
6+
<Option pch_mode="2" />
7+
<Option compiler="gcc" />
8+
<Build>
9+
<Target title="Debug">
10+
<Option output="bin/Debug/03_Kullanıcıdan Değer Alma" prefix_auto="1" extension_auto="1" />
11+
<Option object_output="obj/Debug/" />
12+
<Option type="1" />
13+
<Option compiler="gcc" />
14+
<Compiler>
15+
<Add option="-g" />
16+
</Compiler>
17+
</Target>
18+
<Target title="Release">
19+
<Option output="bin/Release/03_Kullanıcıdan Değer Alma" prefix_auto="1" extension_auto="1" />
20+
<Option object_output="obj/Release/" />
21+
<Option type="1" />
22+
<Option compiler="gcc" />
23+
<Compiler>
24+
<Add option="-O2" />
25+
</Compiler>
26+
<Linker>
27+
<Add option="-s" />
28+
</Linker>
29+
</Target>
30+
</Build>
31+
<Compiler>
32+
<Add option="-Wall" />
33+
</Compiler>
34+
<Unit filename="main.c">
35+
<Option compilerVar="CC" />
36+
</Unit>
37+
<Extensions />
38+
</Project>
39+
</CodeBlocks_project_file>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# depslib dependency file v1.0
2+
1636124322 source:d:\c ve c++\03_kullan�c�dan de�er alma\main.c
3+
<stdio.h>
4+
<stdlib.h>
5+
6+
1636129967 source:d:\for c ve c++\03_kullanicidan deger alma\main.c
7+
<stdio.h>
8+
<stdlib.h>
9+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
2+
<CodeBlocks_layout_file>
3+
<FileVersion major="1" minor="0" />
4+
<ActiveTarget name="Debug" />
5+
<File name="main.c" open="0" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
6+
<Cursor>
7+
<Cursor1 position="988" topLine="18" />
8+
</Cursor>
9+
</File>
10+
</CodeBlocks_layout_file>

0 commit comments

Comments
 (0)