source: tests/strstream.cfa@ 00e9be9

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 00e9be9 was c7015e6b, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

renaming, comment out non-working istrstream

  • Property mode set to 100644
File size: 533 bytes
Line 
1#include <fstream.hfa>
2#include <strstream.hfa>
3
4int main() {
5 enum { size = 256 };
6 char buf[size];
7 ostrstream osstr = { buf, size };
8 int i = 3, j = 5, k = 7;
9 double x = 12345678.9, y = 98765.4321e-11;
10
11 osstr | i | hex(j) | wd(10, k) | sci(x) | unit(eng(y));
12 write( osstr );
13 printf( "%s", buf );
14 sout | i | hex(j) | wd(10, k) | sci(x) | unit(eng(y));
15
16 // char buf2[] = "12 14 15 3.5 7e4";
17 // istrstream isstr = { buf2 };
18 // isstr | i | j | k | x | y;
19 // sout | i | j | k | x | y;
20}
Note: See TracBrowser for help on using the repository browser.