// Podatkovna zbirka: inicpd.cpp
// Inicializacija polja v deklaraciji
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int n[10] = {32, 27, 64, 18, 95, 14, 90, 70, 60, 37};
cout << "Element" << setw(13) << "Vrednost" << endl;
for (int i = 0; i < 10; i++) // izpis polja
cout << setw(7) << i << setw(13) << n[i] << endl;
system("pause");
return 0;
}