From 1add8e9067db691549824119d8e551459137ee25 Mon Sep 17 00:00:00 2001 From: MelodyMale <31468410+MelodyMale@users.noreply.github.com> Date: Fri, 11 Jan 2019 09:16:36 +0700 Subject: [PATCH] Edit "sizeof()" into italic style in line 51 (#26870) --- guide/english/c/data-types/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/data-types/index.md b/guide/english/c/data-types/index.md index 0c07eba836..bce59fd245 100644 --- a/guide/english/c/data-types/index.md +++ b/guide/english/c/data-types/index.md @@ -48,7 +48,7 @@ C makes pick the data type, and makes us be very specific and intentional about In general, you should pick the minimum for your task. If you know you'll be counting from integer 1 to 10, you don't need a long and you don't need a double. If you know that you will never have negative values, look into using the `unsigned` variants of the data types. By providing this functionality rather than doing it automatically, C is able to produce very light and efficient code. However, it's up to you as the programmer to understand the abilities and limitations, and choose accordingly. -We can use the sizeof() operator to check the size of a variable. See the following C program for the usage of the various data types: +We can use the `sizeof()` operator to check the size of a variable. See the following C program for the usage of the various data types: ```c #include