¿Cual es la diferencia entre <> y "" al momento de usar en librerias en C++? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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 Answer
+ 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