From 6a3e54e5300a13a18c3420a51f5721998ac16fc9 Mon Sep 17 00:00:00 2001 From: Robson Couto Date: Mon, 27 Nov 2017 12:35:27 -0300 Subject: [PATCH] Fix in Return section The previous text said there was no returned value --- Language/Variables/Utilities/sizeof.adoc | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Language/Variables/Utilities/sizeof.adoc b/Language/Variables/Utilities/sizeof.adoc index 75aac1911..bae782e38 100644 --- a/Language/Variables/Utilities/sizeof.adoc +++ b/Language/Variables/Utilities/sizeof.adoc @@ -4,13 +4,8 @@ categories: [ "Variables" ] subCategories: [ "Utilities" ] --- - - - - = sizeof - // OVERVIEW SECTION STARTS [#overview] -- @@ -32,14 +27,11 @@ The sizeof operator returns the number of bytes in a variable type, or the numbe [float] === Returns -Nothing +The number of bytes in a variable or bytes occupied in an array. (size_t) -- // OVERVIEW SECTION ENDS - - - // HOW TO USE SECTION STARTS [#howtouse] -- @@ -84,4 +76,4 @@ for (i = 0; i < (sizeof(myInts)/sizeof(int)); i++) { ---- -- -// HOW TO USE SECTION ENDS \ No newline at end of file +// HOW TO USE SECTION ENDS