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