किसी फ़ंक्शन को तर्क के रूप में Arrays को पारित किया जा सकता है। इस कार्यक्रम में, हम 2 आयामी सरणी के तत्वों को एक फ़ंक्शन में पास करके प्रदर्शित करने के लिए प्रदर्शन करेंगे।
एल्गोरिदम
Begin The 2D array n[][] passed to the function show(). Call function show() function, the array n (n) is traversed using a nested for loop. End
उदाहरण कोड
#include <iostream> using namespace std; void show(int n[4][3]); int main() { int n[4][3] = { {3, 4 ,2}, {9, 5 ,1}, {7, 6, 2}, {4, 8, 1}}; show(n); return 0; } void show(int n[][3]) { cout << "Printing Values: " << endl; for(int i = 0; i < 4; ++i) { for(int j = 0; j < 3; ++j) { cout << n[i][j] << " "; } } }
आउटपुट
Printing Values: 3 4 2 9 5 1 7 6 2 4 8 1