fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. template<typename T>
  5. void printArray(T *arr,int size) {
  6. for (int i=0;i<size;i++) {
  7. cout<<arr[i]<<" ";
  8. }
  9. cout<<endl;
  10. }
  11. int main() {
  12. int arr[]={1,2,3,4};
  13. printArray(arr,4);
  14. double arrd[]={3.08,4.72,2.00,3.21,10.90};
  15. printArray(arrd,5);
  16. char letter[]={'2','D','w'};
  17. printArray(letter,3);
  18. string text[]={"hello world","kitten"};
  19. printArray(text,2);
  20. return 0;
  21. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
1 2 3 4 
3.08 4.72 2 3.21 10.9 
2 D w 
hello world kitten