hello I have a piece of code starting like that:
#include <iostream>
#include <conio.h>
#include <stdlib.h>
When I have try to compile this with g++ with a command as: g++ new.cpp
I get this error:
new.cpp:2: fatal error: conio.h: No such file or directory
I couldn't find where is a mistake..Can you tell me what I am doing wrong...
I checked that I have gcc, g++ and build-essential installed on my computer.
Thank you..