string texts[] = {"Apple", "Banana", "Orange"}; for( unsigned int a = 0; a < sizeof(texts); a = a + 1 ) { cout << "value of a: " << texts[a] << endl; }
for(int i = 0; i < 4; i++) { cout << cars[i] << "\n"; }
for(int i=0; i<n; i++) cout<<array[i]<<" " cout<<endl;