-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtur_niteleyiciler.cpp
186 lines (117 loc) · 2.28 KB
/
tur_niteleyiciler.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
#include <iostream>
#include <cstdio>
#include <cstring>
#include <ctime>
#include <cstdlib>
using namespace std;
/*
yer belirleyiciler
auto register extern static bunlar değişkenlerin
nerede tutulacağını belirler.
tür niteliyiciler
const volatile typdef
*/
//ex1
// void func(){
// int x = 10;
// cout<<"x:"<<x++<<endl;
// }
// void foo(){
// static int y = 10;
// cout<<"y:"<<y++<<endl;
// }
// int main(){
// for(int k=0;k<10;k++) {
// func();
// foo();
// }
// }
//ex2
// void func(){
// static int a[10]={0};
// for(int i=0;i<10;i++)
// std::cout<<a[i]<<endl;
// for(int i=0;i<10;i++)
// a[i]++;
// cout<<"\n";
// }
// int main(){
// for(int k=0;k<10;k++) {
// func();
// }
// }
//ex3
// void func(){
// static int a[10]={0};
// for(int i=0;i<10;i++)
// std::cout<<a[i]<<endl;
// for(int i=0;i<10;i++)
// a[i]++;
// cout<<"\n";
// }
// int main(){
// for(int k=0;k<10;k++) {
// func();
// }
// }
//ex4
// char* getName(){
// static char s[100];
// cout<<"ismi giriniz"<<endl;
// cin>>s;
// return s;
// }
// int main(){
// char *p[5];
// for(int k=0;k<5;k++) {
// p[k] = getName();
// }
// for(int k=0;k<5;k++) {
// puts(p[k]);
// }
// }
//ex5
// #define URANDMAX 100
// int myrand(){
// static int flags[500]={0};
// int val;
// static int counter = 0;
// if(counter == URANDMAX)
// return -1;
// while(flags[ val = (rand() % URANDMAX) ])
// ;
// flags[val] = 1;
// counter++;
// return val;
// }
// int main(){
// srand(time(0));
// for(int k=0;k<URANDMAX;k++) {
// cout<<myrand()<<endl;
// }
// }
//ex6
// void func() {
// static int firstCallFlag = 0;
// if(!firstCallFlag) {
// cout<<"ilk kez cagirma"<<endl;
// firstCallFlag = 1;
// }
// cout<<"func"<<endl;
// }
// int main(){
// for(int k=0;k<10;k++) {
// func();
// }
// }
//ex7
//const
/*
pointer ile kullanımı
pointer sız kullanımı
*/
int main(){
const int x = 56;
// int *ptr =&x; // cpp de hata ama c de izin var tabi bu undefined behav.
// ptr=12;
}