I just wrote a simple C++ program in Visual Studio 2010 and I use ceil function. But I forgot to include the <cmath> and only included the <iostream>. Surprisingly my code compiled successfully and ran without any error. I read a C++ book and it clearly says that to use ceil function you must include <cmath> or <math.h>. Why this happens? Can anyone explain me? Thanks!
| |||||
feedback
|
|
The header is indirectly included from some other (indirectly) included header. To find out which one, enable 'keep preprocessed source' ( Update Just found out that VS2010 has renamed the related option:
| ||||
|
feedback
|
|
Technically speaking, implementations are allowed to automatically include any header in the system headers. But this is implementation defined. In some cases, This issue came up on this question: Is this a C program or C++ program, how to decide? That aside, it's possible that it could be indirectly included by other includes. | |||
|
feedback
|
