+ 3
Hi guys am new here. I just started learning programming and am delighted to be in your midst.
I kindly need your help. I have been creating programmes using codeblocks but they fail to run. The error displayed states that the iostream does not exist in the file. What should I do or change to have the programmes run?
12 Respuestas
+ 2
try
#include<iostream.h>
(OR)
Check compilier
+ 1
i dont have it here.. i was doing it at school so its there at school.
+ 1
I'll try it and give you a feedback.
0
can i send a screenshot... It was an assignment given to us in my first class...
0
How can i show it to you
0
#include<iostream>
using namepace std;
int main()
{
cout<<"First name\n Last name";
cin>>"Fname\n Lname";
return0;
}
0
i tried that but the result was still the same
0
thanks ellie... yours is working.. let me try creating my own
0
If you work under Windows be sure to download the version of codeblocks with the legend "Codeblocks + MinGW".
0
did you save your program with extension .cpp ?
0
thank you all for the feedback.