Answers for "how to print a whole array c++"

C++
3

print array c++

void printArray(int a[],int n){
	for(int i=0;i<n;i++)
      cout<<a[i]<<" ";
  	cout<<endl;
}
Posted by: Guest on February-10-2021

Code answers related to "how to print a whole array c++"

Browse Popular Code Answers by Language