0
I tried to make a calculator by c++ but when I build and run a message appears [error] iostream.h No suchfile or directory
what does this mean?
8 Respostas
+ 1
the error means the directry youve included doesnt exist.i thought its
<iostream> not iostream.h?
+ 1
there's no such file named "iostream.h",instead "iostream" exists.So change "#include <iostream.h>" to "#include <iostream>"
0
thanks guys, but is only iostream enough to make a calculator? what about <conio> and <process>?
0
and how I can use them all at the same time?
0
the compiler still sends a message [error]
0
I'm confused
0
when i made my c++ calculator i only used
<cmath>
<iostream>
0
oh thanks again