diff --git a/example_04-01.cpp b/example_04-01.cpp index 97430e0..57609b7 100644 --- a/example_04-01.cpp +++ b/example_04-01.cpp @@ -1,3 +1,4 @@ +// Example 4-1. Summation of a multidimensional array, done plane by plane #include #include @@ -6,6 +7,10 @@ using namespace std; // Summation of a multidimensional array, done plane by plane // int main( int argc, char** argv ) { + + cout << "\nExample 4-1. Summation of a multidimensional array, done plane by plane" + << "\nCall:\n" + << argv[0] << endl; const int n_mat_size = 5; const int n_mat_sz[] = { n_mat_size, n_mat_size, n_mat_size };