From c22f2bcfc0297886a7fb0e2302224bdf70ed5610 Mon Sep 17 00:00:00 2001 From: Laraib Memon <136256738+Laraib-Memon3@users.noreply.github.com> Date: Thu, 31 Oct 2024 16:27:43 +0500 Subject: [PATCH] Update arrayScope.cpp --- Lecture009 Introduction to Arrays in C++/arrayScope.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}