ĀæCual es la diferencia entre <> y "" al momento de usar en librerias en C++? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

ĀæCual es la diferencia entre <> y "" al momento de usar en librerias en C++?

Ā”Hola mundo!, Estoy empezando en este entorno de la programaciĆ³n en C++ y me surgiĆ³ una duda, ĀæExiste alguna diferencia al momento de invocar librerĆ­as, entre include<iostream> y include"iostream"?

22nd Nov 2017, 3:26 PM
Abel Salas Leal
Abel Salas Leal - avatar
1 Resposta
+ 1
The difference is where the include file is searched for. <iostream> searches the compilers default headers only. "iostream" searches the source file location directory first so I could replace the standard one with my own followed by the compilers.
22nd Nov 2017, 3:43 PM
John Wells
John Wells - avatar