| 1 | //                               -*- Mode: C -*- 
 | 
|---|
| 2 | // 
 | 
|---|
| 3 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
 | 
|---|
| 4 | //
 | 
|---|
| 5 | // The contents of this file are covered under the licence agreement in the
 | 
|---|
| 6 | // file "LICENCE" distributed with Cforall.
 | 
|---|
| 7 | // 
 | 
|---|
| 8 | // io.c -- 
 | 
|---|
| 9 | // 
 | 
|---|
| 10 | // Author           : Peter A. Buhr
 | 
|---|
| 11 | // Created On       : Wed Mar  2 16:56:02 2016
 | 
|---|
| 12 | // Last Modified By : Peter A. Buhr
 | 
|---|
| 13 | // Last Modified On : Wed Apr 27 22:45:31 2016
 | 
|---|
| 14 | // Update Count     : 26
 | 
|---|
| 15 | // 
 | 
|---|
| 16 | 
 | 
|---|
| 17 | #include <fstream>
 | 
|---|
| 18 | 
 | 
|---|
| 19 | int main() {
 | 
|---|
| 20 |         char c;                                                                                                         // basic types
 | 
|---|
| 21 |         short int si;
 | 
|---|
| 22 |         unsigned short int usi;
 | 
|---|
| 23 |         int i;
 | 
|---|
| 24 |         unsigned int ui;
 | 
|---|
| 25 |         long int li;
 | 
|---|
| 26 |         unsigned long int uli;
 | 
|---|
| 27 |         long long int lli;
 | 
|---|
| 28 |         unsigned long long int ulli;
 | 
|---|
| 29 |         float f;
 | 
|---|
| 30 |         double d;
 | 
|---|
| 31 |         long double ld;
 | 
|---|
| 32 |         float _Complex fc;
 | 
|---|
| 33 |         double _Complex dc;
 | 
|---|
| 34 |         long double _Complex ldc;
 | 
|---|
| 35 |         char s1[10], s2[10];
 | 
|---|
| 36 | 
 | 
|---|
| 37 |         ifstream in;                                                                                            // create / open file
 | 
|---|
| 38 |         open( &in, "io.data", "r" );
 | 
|---|
| 39 | 
 | 
|---|
| 40 |         &in | &c                                                                                                        // character
 | 
|---|
| 41 |                 | &si | &usi | &i | &ui | &li | &uli | &lli | &ulli             // integral
 | 
|---|
| 42 |                 | &f | &d | &ld                                                                                 // floating point
 | 
|---|
| 43 |                 | &fc | &dc | &ldc                                                                              // floating-point complex
 | 
|---|
| 44 |                 | cstr( s1 ) | cstr( s2, 10 );                                                  // C string, length unchecked and checked
 | 
|---|
| 45 | 
 | 
|---|
| 46 |         sout | c | ' ' | endl                                                                           // character
 | 
|---|
| 47 |                  | si | usi | i | ui | li | uli | lli | ulli | endl             // integral
 | 
|---|
| 48 |                  | f | d | ld | endl                                                                    // floating point
 | 
|---|
| 49 |                  | fc | dc | ldc | endl;                                                                // complex
 | 
|---|
| 50 |         sout | endl;
 | 
|---|
| 51 |         sout | f | "" | d | "" | ld | endl                                                      // floating point without separator
 | 
|---|
| 52 |                  | sepDisable | fc | dc | ldc | sepEnable | endl                // complex without separator
 | 
|---|
| 53 |                  | sepOn | s1 | sepOff | s2 | endl                                              // local separator removal
 | 
|---|
| 54 |                  | s1 | "" | s2 | endl;                                                                 // C string without separator
 | 
|---|
| 55 |         sout | endl;
 | 
|---|
| 56 | 
 | 
|---|
| 57 |         sepSet( sout, ", $" );                                                                          // change separator, maximum of 15 characters
 | 
|---|
| 58 |         sout | f | d | ld | endl                                                                        // floating point without separator
 | 
|---|
| 59 |                  | fc | dc | ldc | endl                                                                 // complex without separator
 | 
|---|
| 60 |                  | s1 | s2 | endl;
 | 
|---|
| 61 |         sout | endl;
 | 
|---|
| 62 |         sepSet( sout, " " );
 | 
|---|
| 63 | 
 | 
|---|
| 64 |         sout
 | 
|---|
| 65 |                 // opening delimiters
 | 
|---|
| 66 |                 | "v(" | 27
 | 
|---|
| 67 |                 | "v[" | 27
 | 
|---|
| 68 |                 | "v{" | 27
 | 
|---|
| 69 |                 | "$" | 27
 | 
|---|
| 70 |                 | "£" | 27
 | 
|---|
| 71 |                 | "¥" | 27
 | 
|---|
| 72 |                 | "¿" | 27
 | 
|---|
| 73 |                 | "«" | 27
 | 
|---|
| 74 |                 | endl
 | 
|---|
| 75 |                 // closing delimiters
 | 
|---|
| 76 |                 | 25 | ","
 | 
|---|
| 77 |                 | 25 | "."
 | 
|---|
| 78 |                 | 25 | ":"
 | 
|---|
| 79 |                 | 25 | ";"
 | 
|---|
| 80 |                 | 25 | "!"
 | 
|---|
| 81 |                 | 25 | "?"
 | 
|---|
| 82 |                 | 25 | ")"
 | 
|---|
| 83 |                 | 25 | "]"
 | 
|---|
| 84 |                 | 25 | "}"
 | 
|---|
| 85 |                 | 25 | "%"
 | 
|---|
| 86 |                 | 25 | "¢"
 | 
|---|
| 87 |                 | 25 | "»"
 | 
|---|
| 88 |                 | endl
 | 
|---|
| 89 |                 // opening-closing delimiters
 | 
|---|
| 90 |                 | 25 | "'" | 27
 | 
|---|
| 91 |                 | 25 | "`" | 27
 | 
|---|
| 92 |                 | 25 | "\"" | 27
 | 
|---|
| 93 |                 | 25 | "\f" | 27
 | 
|---|
| 94 |                 | 25 | "\n" | 27
 | 
|---|
| 95 |                 | 25 | "\r" | 27
 | 
|---|
| 96 |                 | 25 | "\t" | 27
 | 
|---|
| 97 |                 | 25 | "\v" | 27
 | 
|---|
| 98 |                 | endl;
 | 
|---|
| 99 | }
 | 
|---|
| 100 | 
 | 
|---|
| 101 | // Local Variables: //
 | 
|---|
| 102 | // tab-width: 4 //
 | 
|---|
| 103 | // compile-command: "cfa io.c" //
 | 
|---|
| 104 | // End: //
 | 
|---|