C++ Array streamline from a source

Objectives :

  • myArrayImport1.cpp
    Get, Import or Streamline an array source
    //-----------------
    int a2 , *a3, *a4;
    a2 = get_array(i);
    *a3 = get_array(i);
    *a4 = *a3;
    //--------------------
  • Code : myArrayImport1.txt

Step: 1 Create a source file.

Step: 2 Edit and save Source file

Step: 3 Runtime Views:

Step: