I found this code written and I added #include "iostream" , can you tell me if theres a difference if I type #include <<iostream>> like this or "iostream" with quotes ?
Because the above is not C++ but C++/CLI ( which is a different language ) -- don't start a CLR Empty Project
#include "header" searches on the current directory and on the compiler include direcories
#include <header> searches only on compiler include direcories