source: src/examples/vector_test.c @ 6e991d6

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 6e991d6 was 6ba0659, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

major rewrite of I/O library and update example programs to use new I/O

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[86bd7c1f]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// vector_test.c --
8//
9// Author           : Richard C. Bilson
10// Created On       : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
[6ba0659]12// Last Modified On : Wed Feb 17 12:23:55 2016
13// Update Count     : 18
[86bd7c1f]14//
15
[d3b7937]16#include <fstream>
17#include <iterator>
[51b7345]18#include "vector_int.h"
19#include "array.h"
20
[784deab]21int main( void ) {
[86bd7c1f]22        vector_int vec = vector_int_allocate();
[134b86a]23
[86bd7c1f]24        // read in numbers until EOF or error
25        int num;
[134b86a]26
[cf16f94]27        sout | "enter N elements and C-d on a separate line:" | endl;
[86bd7c1f]28        for ( ;; ) {
[cf16f94]29                sin | &num;
[86bd7c1f]30          if ( fail( sin ) || eof( sin ) ) break;
[e56cfdb0]31                append( &vec, num );
[86bd7c1f]32        }
33        // write out the numbers
[134b86a]34
[cf16f94]35        sout | "Array elements:" | endl;
[e56cfdb0]36        write( begin( vec ), end( vec ), sout );
[cf16f94]37        sout | endl;
[e56cfdb0]38
[cf16f94]39        sout | "Array elements reversed:" | endl;
[86bd7c1f]40        write_reverse( begin( vec ), end( vec ), sout );
[cf16f94]41        sout | endl;
[51b7345]42}
[134b86a]43
[86bd7c1f]44// Local Variables: //
45// tab-width: 4 //
[d3b7937]46// compile-command: "cfa vector_test.c vector_int.o array.o" //
[86bd7c1f]47// End: //
Note: See TracBrowser for help on using the repository browser.