Added reminder to include libraries in files. (#28218)

This commit is contained in:
Jonathan Villegas
2019-04-05 11:39:56 -07:00
committed by Christopher McCormack
parent 8d22db2459
commit cce94b12e0

View File

@ -156,3 +156,4 @@ int main ()
* If only integers are involved, an integer will be returned * 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 * 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. * 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.