Changes in src/examples/io.c [6b6597c:53ba273]
- File:
-
- 1 edited
-
src/examples/io.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/examples/io.c
r6b6597c r53ba273 11 11 // Created On : Wed Mar 2 16:56:02 2016 12 12 // Last Modified By : Peter A. Buhr 13 // Last Modified On : Wed Apr 13 23:03:14201614 // Update Count : 2213 // Last Modified On : Wed Apr 6 14:58:27 2016 14 // Update Count : 15 15 15 // 16 16 … … 36 36 37 37 ifstream in; // create / open file 38 open( &in, "i o.data", "r" );38 open( &in, "input.data", "r" ); 39 39 40 40 &in | &c // character … … 59 59 | fc | dc | ldc | endl // complex without separator 60 60 | s1 | s2 | endl; 61 sout | endl;62 sepSet( sout, " " );63 64 sout65 // opening delimiters66 | "v(" | 2767 | "v[" | 2768 | "v{" | 2769 | "$" | 2770 | "£" | 2771 | "¥" | 2772 | "¿" | 2773 | "«" | 2774 | endl75 // closing delimiters76 | 25 | ","77 | 25 | "."78 | 25 | ":"79 | 25 | ";"80 | 25 | "!"81 | 25 | "?"82 | 25 | ")"83 | 25 | "]"84 | 25 | "}"85 | 25 | "%"86 | 25 | "¢"87 | 25 | "»"88 | endl89 // opening-closing delimiters90 | 25 | "'" | 2791 | 25 | "`" | 2792 | 25 | "\"" | 2793 | 25 | "\f" | 2794 | 25 | "\n" | 2795 | 25 | "\r" | 2796 | 25 | "\t" | 2797 | 25 | "\v" | 2798 | endl;99 61 } 100 62
Note:
See TracChangeset
for help on using the changeset viewer.