सरणी निरंतर स्मृति स्थानों में संग्रहीत समान डेटा प्रकार के तत्वों का संग्रह है।
सी ++ मानक पुस्तकालय में कई पुस्तकालय हैं जो सरणी के कामकाज का समर्थन करते हैं। उनमें से एक सरणी डेटा () विधि है।
सी ++ में सरणी डेटा () ऑब्जेक्ट के पहले तत्व की ओर इशारा करते हुए एक पॉइंटर देता है।
सिंटैक्स
array_name.data();
पैरामीटर
फ़ंक्शन द्वारा स्वीकार किए गए कोई पैरामीटर नहीं हैं।
वापसी का प्रकार
सरणी के पहले तत्व के लिए एक सूचक।
उदाहरण
ऐरे डेटा के उपयोग को दर्शाने वाला कार्यक्रम () विधि -
#include <bits/stdc++.h> using namespace std; int main(){ array<float, 4> percentage = { 45.2, 89.6, 99.1, 76.1 }; cout << "The array elements are: "; for (auto it = percentage.begin(); it != percentage.end(); it++) cout << *it << " "; auto it = percentage.data(); cout << "\nThe first element is:" << *it; return 0; }
आउटपुट
The array elements are: 45.2 89.6 99.1 76.1 The first element is:45.2
उदाहरण
ऐरे डेटा () पद्धति के उपयोग को दर्शाने के लिए कार्यक्रम
#include <bits/stdc++.h> using namespace std; int main(){ array<float, 4> percentage = { 45.2, 89.6, 99.1, 76.1 }; cout << "The array elements are: "; for (auto it = percentage.begin(); it != percentage.end(); it++) cout << *it << " "; auto it = percentage.data(); it++; cout << "\nThe second element is: " << *it; it++; cout << "\nThe third element is: " << *it; return 0; }
आउटपुट
The array elements are: 45.2 89.6 99.1 76.1 The second element is: 89.6 The third element is: 99.1