about summary refs log tree commit diff
path: root/cpptour/myvec.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cpptour/myvec.cc')
-rw-r--r--cpptour/myvec.cc36
1 files changed, 0 insertions, 36 deletions
diff --git a/cpptour/myvec.cc b/cpptour/myvec.cc
deleted file mode 100644
index 1314730..0000000
--- a/cpptour/myvec.cc
+++ /dev/null
@@ -1,36 +0,0 @@
-#include <iostream>
-
-using namespace std;
-
-struct Vector
-{
-  int sz;       // number of elements
-  double* elem; // pointer to elements
-};
-
-void
-vector_init (Vector& v, int s)
-{
-  v.elem = new double[s];
-  v.sz = s;
-}
-
-double
-read_and_sum (int s)
-{
-  Vector v;
-  vector_init (v, s);
-  for (int i = 0; i != s; ++i)
-    cin >> v.elem[i];
-
-  double sum = 0;
-  for (int i = 0; i != s; ++i)
-    sum += v.elem[i];
-  return sum;
-}
-
-int
-main ()
-{
-  cout << read_and_sum (5) << endl;
-}