Question: Which two lines set up things so that the libraries with console input and output facilities are available to the c++ program?
A
B
C
D
#include <iostream>
using namespace std;
B
#include <conio.h>
using namespace std;
C
#include <stdio.h>
using namespace std;
D
#include <iostream.h>
using namespace std;
Note: Not available