What is meant by the statement #include?
#include<iostream>:This is a directive which causes the preprocessor to add the contents of iostream, which is a header file and must be added above all of a program where input/output statements has been used. We will include the header file with the statement #include <iostream> The iostream package automatically defines a variable (an … Read more