From cce94b12e070253e47ce0dc7312da4d18aad5b86 Mon Sep 17 00:00:00 2001 From: Jonathan Villegas Date: Fri, 5 Apr 2019 11:39:56 -0700 Subject: [PATCH] Added reminder to include libraries in files. (#28218) --- guide/english/c/math/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/c/math/index.md b/guide/english/c/math/index.md index 55d3a4e96e..6531d5e61d 100644 --- a/guide/english/c/math/index.md +++ b/guide/english/c/math/index.md @@ -156,3 +156,4 @@ int main () * If only integers are involved, an integer will be returned * If a floating point number is involved in an operation, that part of the operation becomes floating point * C provides a `math.h` library with multiple functions like `pow` for calculating the power of a number. +* Don't forget to include the library at the top of the file or the compiler will complain.