C++ Code Structure

For understanding the structure of the C++ code, first consider the following snapshot of the code. Output: Hello World The code consists of seven lines.  Each line of the code is called statement of expression. Each C++ statement ends with semicolon(;). We explain each statement of the code. #include <iostream.h>; The first line is #include <iostream.h>;. … Read more