Declare, create, and initialize a 2D native array
#include "stdafx.h" int main() { int native_array_2D[2][2] = { { 1, 0 }, { 0, 1 } }; }