summaryrefslogtreecommitdiffhomepage
path: root/tr-tr/c-tr.html.markdown
diff options
context:
space:
mode:
authorHaydar Kulekci <haydarkulekci@gmail.com>2013-09-03 23:21:03 +0300
committerHaydar Kulekci <haydarkulekci@gmail.com>2013-09-03 23:21:03 +0300
commitc7a623b6494fc2c3cbacb31bed52996c98283655 (patch)
tree5320974c1924750b6c6521c80bb40ee237ff08f9 /tr-tr/c-tr.html.markdown
parent412b312c45ccb8922f92c4ee364819fb0add7734 (diff)
update latest commits.
Diffstat (limited to 'tr-tr/c-tr.html.markdown')
-rw-r--r--tr-tr/c-tr.html.markdown4
1 files changed, 4 insertions, 0 deletions
diff --git a/tr-tr/c-tr.html.markdown b/tr-tr/c-tr.html.markdown
index 50bca246..128901de 100644
--- a/tr-tr/c-tr.html.markdown
+++ b/tr-tr/c-tr.html.markdown
@@ -95,6 +95,10 @@ int main() {
// is not evaluated (except VLAs (see below)).
// The value it yields in this case is a compile-time constant.
int a = 1;
+
+ // size_t bir objeyi temsil etmek için kullanılan 2 byte uzunluğundaki bir
+ // işaretsiz tam sayı tipidir
+
size_t size = sizeof(a++); // a++ is not evaluated
printf("sizeof(a++) = %zu where a = %d\n", size, a);
// prints "sizeof(a++) = 4 where a = 1" (on a 32-bit architecture)