fork download
  1. #include <vector>
  2.  
  3. #include <iostream>
  4.  
  5. #include <string>
  6.  
  7. using namespace std;
  8.  
  9. template < typename T > ostream & print (const T & start, const T & end)
  10. {
  11.  
  12. T tmp = start;
  13.  
  14. for (; tmp != end; ++tmp)
  15.  
  16. {
  17.  
  18. cout << *tmp << " "; // LINE I
  19.  
  20. }
  21.  
  22. return cout;
  23.  
  24. }
  25.  
  26. class A
  27. {
  28.  
  29. public:
  30.  
  31. int a;
  32.  
  33. public:
  34.  
  35. A (int a):a (a)
  36. {
  37. }
  38.  
  39. };
  40.  
  41. ostream & operator<< (ostream & c, const A & o)
  42. {
  43.  
  44. c << o.a;
  45.  
  46. return c;
  47.  
  48. }
  49.  
  50. int
  51. main ()
  52. {
  53.  
  54. int tab[] = { 1, 5, 3, 3, 5, 6 };
  55.  
  56. vector < A > v1 (tab, tab + 6); //LINE II
  57.  
  58. v1.insert (v1.end (), A (0));
  59.  
  60. print (v1.begin (), v1.end ()) << endl;
  61.  
  62. return 0;
  63.  
  64. }
  65.  
Success #stdin #stdout 0.01s 5300KB
stdin
Standard input is empty
stdout
1 5 3 3 5 6 0