diff --git a/Lecture009 Introduction to Arrays in C++/arrayScope.cpp b/Lecture009 Introduction to Arrays in C++/arrayScope.cpp index ce39f930..d88fc850 100644 --- a/Lecture009 Introduction to Arrays in C++/arrayScope.cpp +++ b/Lecture009 Introduction to Arrays in C++/arrayScope.cpp @@ -17,7 +17,7 @@ void update(int arr[], int n) { cout << "Going back to main function" << endl; } - +//main method int main() { int arr[3] = {1,2,3}; @@ -32,4 +32,4 @@ int main() { cout << endl; return 0; -} \ No newline at end of file +}