mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
9 lines
124 B
C++
9 lines
124 B
C++
#include <array>
|
|
using namespace std;
|
|
|
|
int main() {
|
|
int i=1,j=1;
|
|
array< array<int,2>,2 >{ (i,j), (i,j) };
|
|
return 0;
|
|
}
|