Back To C++ Single Dimensional Arrays Index
//program to input an char array and pass this array to function #include
#include
void printarray(int a[10]) { int i; cout<<"\nprinting the array\n"; for(i=0;i<10;i++) { cout<
>a[i]; } printarray(a); getch(); }