+ 1
About c++
can I use iostream in double Cote like "iostream" please reply. if I use this what is impact in program.
3 ответов
+ 8
Great question. I never knew. :>
https://stackoverflow.com/questions/10304751/difference-between-iostream-and-iostream-quotes-in-include
+ 2
From what i know, you only use the quotes "" for headers you write, whereas standard cpp libraries are included with <>. For instance suppose you wrote a header Game.h . In your Game.cpp you might begin like so :
#include <iostream>
#include "Game.h"
0
no Luca ... I am writing #include"iostream ". if I am writing this my code is run without error