From c7a623b6494fc2c3cbacb31bed52996c98283655 Mon Sep 17 00:00:00 2001 From: Haydar Kulekci Date: Tue, 3 Sep 2013 23:21:03 +0300 Subject: update latest commits. --- tr-tr/c-tr.html.markdown | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tr-tr/c-tr.html.markdown') 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) -- cgit v1.2.3