c++ - Can not find the "fiostream.h" file -


i'm learning c++ now.

here question:

#include <fiostream.h> 

no matter used:

#include <fiostream>  #include "fiostream"  #include "fiostream.h" 

i can not find "fiostream.h" file anywhere.

where can find "fiostream.h" file?

does "iostream.h" include "fiostream.h"'s functions?

what's difference between "fiostream.h" , "iostream.h"?

thank you~~

what's difference between "fiostream.h" , "iostream.h"?

the difference “f”. neither header exists. iostream does, fiostream doesn’t (but fstream does).


Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -