From e5e4b14d7d23f5298f69b863cc55909b95efe24b Mon Sep 17 00:00:00 2001 From: Animesh Srivastava Date: Sun, 14 Jul 2019 05:24:22 +0530 Subject: [PATCH] Update sizeof.adoc Line 69 Do we need to modify the **ints** ? --- Language/Variables/Utilities/sizeof.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Language/Variables/Utilities/sizeof.adoc b/Language/Variables/Utilities/sizeof.adoc index 332e8637c..d40f4d2b7 100644 --- a/Language/Variables/Utilities/sizeof.adoc +++ b/Language/Variables/Utilities/sizeof.adoc @@ -23,12 +23,12 @@ The `sizeof` operator returns the number of bytes in a variable type, or the num [float] === Parameters -`variable`: The thing to get the size of. Allowed data types: any variable type or array (e.g. `int`, `float`, `byte`). +`variable`: The thing to get the size of. Allowed data types: any variable type or array (e.g. `link:../../data-types/int[int]`, `link:../../data-types/float[float]`, `link:../../data-types/byte[byte]`). [float] === Returns -The number of bytes in a variable or bytes occupied in an array. Data type: `size_t`. +The number of bytes in a variable or bytes occupied in an array. Data type: `link:../../data-types/size_t[size_t]`. -- // OVERVIEW SECTION ENDS