Changeset c7015e6b
- Timestamp:
- Apr 27, 2021, 10:16:43 PM (2 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 00e9be9, adaee12
- Parents:
- cbedb61
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/strstream.cfa
rcbedb61 rc7015e6b 5 5 enum { size = 256 }; 6 6 char buf[size]; 7 strstreamsstr = { buf, size };7 ostrstream osstr = { buf, size }; 8 8 int i = 3, j = 5, k = 7; 9 9 double x = 12345678.9, y = 98765.4321e-11; 10 10 11 sstr | i | hex(j) | wd(10, k) | sci(x) | unit(eng(y));12 write( sstr );11 osstr | i | hex(j) | wd(10, k) | sci(x) | unit(eng(y)); 12 write( osstr ); 13 13 printf( "%s", buf ); 14 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; 15 20 }
Note: See TracChangeset
for help on using the changeset viewer.