Hi,
Is there a way to convert ifstream to FILE*;
Something like this
Thanks
Is there a way to convert ifstream to FILE*;
Something like this
Code:
ifstream ifs( " test.txt "); if( !ifs.is_opsn() ) return 0; FILE* f = ifs; //how can I convert ifs to FILE*
Comment