How to use in devc ++ the cout and cin?

0

I've just started programming at the university. I have tried with fstream.h, iostream.h and none allows the dev. And if you wonder if you keep the code as c ++

    
asked by Andrés HM 26.06.2018 в 14:37
source

1 answer

-1

Use these basic libraries

#include<iostream>
#include<conio.h>
#include<stdlib.h>

// and then do not forget about

using namespace std;
    
answered by 28.06.2018 / 07:03
source