Google News
logo
CPP - Quiz(MCQ)
What is the mandatory preprocessor directive for c++?
A)
#include <iostream>
B)
#define <iostream>
C)
#undef <iostream>
D)
#macro <iostream>

Correct Answer :   #include <iostream>


Explanation : For a c++ program to execute, we need #include<iostream>.

Advertisement