+ 1
How to print starting 3 array digits of a 5 digit array
I want to print the starting array of the array you wanted
1 Réponse
+ 8
Which Language?
In C++, you do :
for(int i=0;i<3;i++) cout<<arr[i]<<(i==3)?"\n":",";
I want to print the starting array of the array you wanted