+ 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"?
1 Réponse
+ 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.