how to iterate through a node array C++ code example
Example 1: c++ loop through array
string texts[] = {"Apple", "Banana", "Orange"};
for( unsigned int a = 0; a < sizeof(texts); a = a + 1 )
{
cout << "value of a: " << texts[a] << endl;
}
Example 2: how to iterate through array in c++
for(int i=0; i<n; i++)
cout<<array[i]<<" "
cout<<endl;