diff options
author | Adam <adam@adambard.com> | 2013-09-04 09:33:38 -0700 |
---|---|---|
committer | Adam <adam@adambard.com> | 2013-09-04 09:33:38 -0700 |
commit | 20c866041845a8cc438fce4a0cceb18cb940774d (patch) | |
tree | 576e35218a004db2ced0cd9a6423385e8e3e6204 /tr-tr/c-tr.html.markdown | |
parent | e546f9cd9c87733fc9e502746109a8abe0a12f86 (diff) | |
parent | 95e9194077083243a88f86106a97a06cc715ccdf (diff) |
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
Diffstat (limited to 'tr-tr/c-tr.html.markdown')
-rw-r--r-- | tr-tr/c-tr.html.markdown | 4 |
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) |