Hello!
I got an error while compiling this simple program with a single array on it.
------------------------------------------------------------------------------
// Programi Vektori2
#include <iostream>
using namespace std;
int main()
{
const m=5;
int i,A[m];
cout << "Vektori i formuar\n\n";
for (i=0;i<m;i++)
{
A[i]=i*i;
cout << " A["
<< i
<< "]="
<< A[i]
<< endl;
}
cout << endl;
return 0;
}
--------------------------------------------------------------------------------
E336: col(8) declaration specifiers are required to declare 'm'|