// "cfa hello.c fstream.c iostream.o" // "cfa -CFA hello.c > hello.i" // "cfa hello.i fstream.i iostream.o" #include "fstream.h" int main() { ofstream *sout = ofstream_stdout(); ifstream *sin = ifstream_stdin(); sout << "Bonjour au monde!\n"; sout << 3 << " " << 3.5 << " " << 'a' << " " << "abc" << "\n"; int i, j, k; sin >> &i >> &j >> &k; sout << "i:" << i << " j:" << j << " k:" << k << "\n"; }