0

What is the difference between standard library and header file??

Im just a begginer.

26th Nov 2017, 8:54 AM
Gplayer
Gplayer - avatar
3 Respuestas
+ 1
The standard library is a collection of header files. All these header files use the namespace std. Did that answer your question?
26th Nov 2017, 9:55 AM
Timon Paßlick
0
Thanks bro I understand 🙏🙏🙏. So if I use any header file i'll have to use std? Like conio.h? Oh sorry forgot about the,... Dot. H thing
26th Nov 2017, 3:32 PM
Gplayer
Gplayer - avatar
0
Headers with such < > brackets use std, headers with such " " literals have no namespace since they are old and most often deprecated c headers. "conio.h" is a c header whereas <iostream> is a c++ header which has everything declared in the std namespace.
26th Nov 2017, 5:49 PM
Timon Paßlick