0
Whenever I use codeblocls it says iostream file doesn't exist. What should I do ?
It displays an error and says iostream file doesn't exist, do I need to download any file separately? Please help
3 Answers
+ 5
You MUST include it like so:
#include <iostream>
Also, I recommend staying away from Codeblocks, and using Visual Studio Code instead. Also, for the love of lunchtime, (what? I am about to eat lunch!) consider using Linux, if you are not already using it. Compile with g++ and you should be fine.
0
cmd >>> ide
g++ -c main.cpp
g++ main.o -o main.exe
main.exe
trust me. way better. here u can use like sublime text or something cool lol
0
thank you guys