Visual c++ can’t open include file ‘iostream’

Replace

#include <iostream.h>

with

using namespace std;

#include <iostream>

Leave a Comment