Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.21 KB

ccomplex.md

File metadata and controls

38 lines (29 loc) · 1.21 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic f1_keywords dev_langs ms.assetid caps.latest.revision author ms.author manager
<ccomplex> | Microsoft Docs
11/04/2016
cpp-standard-libraries
article
<ccomplex>
C++
a9fcb5f0-88e3-464b-a5fd-d1afb8cd7e6f
15
corob-msft
corob
ghogen

<ccomplex>

Includes the C++ Standard Library header <complex>, which effectively includes the Standard C library header <complex.h> and adds the associated names to the std namespace.

Syntax

#include <ccomplex>  
  

Remarks

Including this header ensures that the names declared using external linkage in the Standard C library header are declared in the std namespace.

The name clog, which is declared in <complex.h>, is not defined in the std namespace because of potential conflicts with the clog that is declared in <iostream>.

See Also

Header Files Reference
C++ Standard Library Overview